Basic Introduction to Programming with C

Arguments of printf. Special Characters. The format of printf() is printf(“Hello my name is %d”, variable); The first argument is what you are printing with format specifiers which will get replaced by variables that you pass through. Figure 4: Special Characters. Exercise: What is the output of this code? What is wrong with this code? # ... ................
................