/CL60-01

Computer Laboratory 2560-Lab01

#include <stdio.h> int main() { char yourname[100]; printf("What is your name?\t"); scanf("%s",yourname); printf("hello,%s\n",yourname); printf("Goodbye\n"); }