#Meta-Wlp: #Macro: TITLE wlp: Learn C (III) p. 1
#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.) #: