#Meta-Wlp: #Macro: TITLE wlp: Learn C (III) p. 8
Many hours are wasted debugging programs when,
The update by one of a variable is so common that C Language has a special operator for it.
#include<stdio.h> int main(){ char * s ; s = "I'm melting!" ; while (*s) { printf("%s\n", s ) ; s++ ; } }What operator preforms in updating increment of its argument? #Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Table of Contents #: Every operator. #:
*s!=0
#:
s++
#: