C examples for String:Introduction
Create strings as pointers
#include <stdio.h> int main(void) { printf("%s, %p, %c\n", "We", "are", *" test test"); /*from w w w. j av a2s . c o m*/ return 0; }