When I run the program below, I get no output.
#include <stdio.h> int main() { printf("hello"); while(1) { } return 0; }
whereas if I edit the printf command to add the character '\ n' to the end of the line, then the expected output will appear. what happens in the first code? I just do not understand.
source share