Monday, 4 September 2017

C - Program to Print Hello World



#include<stdio.h>
int main()
{
printf("Hello World\n");
return 0;
}
Output:
Hello World

No comments:

Post a Comment

C-Program to know whether the character is vowel or not

#include<stdio.h> int main() {   char c;   printf("Enter a character to know whether it is vowel or not\n");   scanf("...