Why printf statement don't continue to next lines?
Consider this program: #include <stdio.h> int main() { int a; a = 16; printf("This is the first line this is the second line "); } Why does this program throw error? Why can’t it compile successfully and show the output as: This is the first line this is the second line | the symbol ‘|’… Read More Why printf statement don't continue to next lines?