Create strings as pointers - C String

C examples for String:Introduction

Description

Create strings as pointers

Demo Code

#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;
}

Result


Related Tutorials