#Meta-Wlp: #Macro: TITLE wlp: Learn C (III) p. 2
#include<stdio.h> int main(){ char * s ; s = "I am a string.\n" ; printf (s) ; }What does char * s do? #Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Table of Contents #: It defines
s
to be char *
.
(Pronounced: char-star).
#:
It multiplies char
by s
.
#:
It makes s
a string.
#: