示例#1
0
int main() 
{
	// call a function in another file
	myPrintHelloMake();
	return(0);
	
}
示例#2
0
int main() {

	/* char string[50];
	printf("gimmie a string: ");
	gets(string); */

	char string[]="blahyadda";
	char outfile[]="myfile.txt";

  /* call a function in another file */
  myPrintHelloMake();
  myLoopPrint();
  /* curl_a_page();
  test_suite_1(); */

	thingy();
	write_out(string);

	write_to_file(string, outfile);

  return(0);
}
示例#3
0
int main() {
myPrintHelloMake();
return(0);
}
示例#4
0
int main(int agrc, char **argv) {

  myPrintHelloMake();

  return 0;
}