Starting C programming || Print text in c language
#include<stdio.h>
int main()
{
printf("Hello, what is your name: \n");
/* This will print the text in the double quote and by using \n the cursor move to
the next line.*/
return 0;
}
Comments
Post a Comment