/* Program#array2.c Another Simple Program to Demonstrate the use of arrays */ #include main() { static char name[40] ="hello"; printf("%s",name); scanf("%s",name); printf("%s",name); }