C examples for String:Display
Displaying a string with printf
#include <stdio.h> int main(void) { printf("The character \0 is used to terminate a string."); return 0;/*from w ww .j av a 2 s .c om*/ }