Write code to define a C-string aString variable, of size 10 but do not initialize it. Use a library C-string library function to copy the C-string literal, “Hello” into aString.
What will be an ideal response?
```
#include
. . .
char aString[10];
strcpy(aString, “Hello”);
```
Computer Science & Information Technology
You might also like to view...
To remove an attachment from a record, you ________
A) click the paperclip press Delete B) double-click the paperclip and click Remove C) right-click the paperclip and select Delete from the menu D) right-click the paperclip and select Remove from the menu
Computer Science & Information Technology
How many host on a /32?
A. 0 B. 2 C. 3 D. 1
Computer Science & Information Technology