C examples for String:Display
Output char array, string value with puts() function
#include <stdio.h> int main(void){ char string[] = "this is a test!"; puts(string);/*from w w w. j ava 2 s . c om*/ return 0; }