I\'m attempting to learn C and already I\'ve run into an issue. I assume its trivial but I need to know it. I have written:
#include #include
The error is coming from printf(str_a);. Your code should be printf("%s",str_a); take a look at the following link for more info on printf. http://www.cprogramming.com/tutorial/printf-format-strings.html
printf(str_a);
printf("%s",str_a);