Expanding String literals multile in C and C++
Example
#include <stdio.h> int main() { printf("this is the first line " "this is second line" "this is the third line" ); getchar(); return 0; }
Expanding String literals multile in C and C++
#include <stdio.h> int main() { printf("this is the first line " "this is second line" "this is the third line" ); getchar(); return 0; }