write a basic program to accept your name print hello <name >
Answers
Answered by
1
Answer:
#include<stdio.h>
int main(){
char name[30];
printf("Enter your name \n");
scanf("%s",&name);
printf("hello %s",name);
return 0;
}
Similar questions