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?

Is indentation semantically meaningful or syntactically meaningful in Python

I came across the sentence, In Python, indentation is semantically meaningful. I’m not sure I understand what "semantically meaningful" means here. Also, since indentations are used to delimit the if and else blocks of coniditional expressions in Python, wouldn’t they be considered to be part of the language grammar and therefore "syntactically meaningful"? (I cannot… Read More Is indentation semantically meaningful or syntactically meaningful in Python