Friday, October 14, 2011

Write a C program to print following sentences. a. I am an Indian b. “I am an Indian” c. *I am an Indian*

#include //This is include information about standard library
main() //User define function
{
printf("I am an Indian\n"); //here printing the given sentence
printf("*I am an Indian*\n"); //here printing the given sentence
printf("\"I am an Indian\"\n"); //here printing the given sentence
}

No comments:

Post a Comment