#include <stdio.h> int main() { char name[50]; printf("Enter name:"); scanf("%s", &name); printf("Hello %s" , name ); return 0; } ...
確定! 回上一頁