Exercise 1-2
πŸŒ“

Exercise 1-2

Β 
❓
Experiment to find out what happens when printf’s argument string contains \c where c is some character not listed above.
Β 
#include <stdio.h> main() { printf("hello, "); printf("world \c"); printf("\n"); }
The result of the program is: hello, world c
The c is not a valid escape sequence.