Question: We have defined the following variable str to hold a string: char str [ 2 0 ] ; What would be the correct way to

We have defined the following variablestr to hold a string:
char str[20];
What would be the correct way to store the string "my data" intostr?
We have defined the following variablestr to hold a string:
char str[20];
What would be the correct way to store the string "my data" intostr?
snprintf(str,20,"%s","my data");
strncat(str,"my data", 20);
str ="my data";
printf("my data", str);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!