Example #1
0
int main(int argc, char** argv)
{
	char  s2[40] = "Hi ! This is the second string\n";

	ELF_Print(s1);
	ELF_Print(s2); 
	return 0;
}
Example #2
0
int main(int argc, char** argv)
{
					
/*	char  *s2 = "Hi ! This is the second string\n";*/
	int i = 0;
	char  s2[40] = "Hi ! This is the second string\n";

	/*while(1){
		si no lo imprime, no deberia imprimirlo nunca
		ELF_Print(&s2[0]);
	}*/

	while(1){
		/*encuentra el string ... y se muere*/
		ELF_Print(&s2[i]);
		i++;
	}

	ELF_Print(s1);
	ELF_Print(s2); 
   return 0;
}