C examples for Language Basics:printf
Display two sentences on separate lines using a single printf() statement.
#include <stdio.h> int main(void) { printf("this is a test?\n another test.\n"); return 0;/* ww w. ja v a 2 s. c om*/ }