Views: 288
[js]
#include <stdio.h>
int main( void ){
// lines starting with double slashes are called as comments.
//Comments are used to explain code and they are not executed by compiler
printf("Welcome to C!n"); // n moves the cursor to the new line
printf("Hello My Name is Junaid Hassant We added tabbed spacen"); // t adds tabbed space
return 0;
}
[/js]





Leave a Reply