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

Chapter III

In this chapter, Strings and Pointers will be explored.
#include<stdio.h>
int main(){
  char * s ;
  s = "I am a string.\n" ;
  printf (s) ;
}
What does this C language program do? #Shuffle: none $PAGE$-A $PAGE$-B Return to Learn C Table of Contents #: I have no idea what it does. #: It prints the text: I am a string. (Followed by a newline.) #: