2005-03-03

My First C Program!!

#include <stdio.h> int main(){ char* myname = "jieNew"; printf("Hello! World! My name is %s.", myname); return (0); }

output:

Helo! World! My name is jieNew.

No comments:

Post a Comment