Related Questions

Comment on the output of the following C code.
#include int main(){ char *str = "This" //Line 1 char *ptr = "Program\n"; //Line 2 str = ptr; //Line 3 printf("%s, %s\n", str, ptr); //Line 4}
What will be the output of the following PHP code?
What will be the output of the following PHP code?
What will be the output of the following PHP code?