C Programming Language Array in C Language
⚠ Report Question ✓ Question Verified
#include #include void main() { char str1[20] = "Hello", str2[20] = " World"; printf("%sn", strcpy(str2, strcat(str1, str2))); }
Learn More MCQ Questions from C Programming Language Array in C Language
Test your knowledge of arrays in C programming with these multiple choice questions. Learn about the different types of arrays in C and how to use them to store and manipulate data. Take the quiz now!