C Program to Print a Sentence

Source Code


/* C Program to print a sentence. */
#include <stdio.h>
int main()
{
   printf("C Programming"); /* printf() prints the content inside quotation */
   return 0;
}
Output

C Programming

No comments

Powered by Blogger.