#Meta-Wlp: #Macro: TITLE wlp: Learn C (III) p. 2 #Eval: $TITLE$ #Macro: PAGE bb3-2

Yes, it prints: I am a string.

The program we are now considering introduces several new concepts.
#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. #: