A Simple C program : Printing a Line of Text


/*this is my first -comments

program in C */-comments

#include <stdio.h>-preprocessor directive

int main()-method

{

printf("Welcome to C \n");-escape character

return 0;-return value

}


Comments