#Meta-Wlp: #Macro: TITLE wlp: Learn C (IV) p. 6b #Eval: $TITLE$ #Macro: PAGE bb4-6b

t can be assigned the value s+3

What does the following code do?
#include<stdio.h>

int main() {
   char * s, * t ;
   s = "tops" ;
   t = s+2 ;
   *s = *t ;
   printf("%s\n", s ) ;
}
#Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Table of Contents #: It prints garbage. #: It prints "tot". #: It prints "pops". #: