#include<stdio.h>
#include<cs50.h>
int main()
{
string name = get_string("What is your name?\n"); //To take user name
printf("Hello %s\n", name); //To print name
}
This is my blog channel in which you can find most of the programming codes. Maximum in C language.
Comments
Post a Comment