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

Correct. Your singing isn't bad either!

Remember: In C, binary logical operators are written double: == is equals, || is OR, && is AND.

Many hours are wasted debugging programs when,

Please be careful. The last thing we need is more programmers who hate C Language.

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++ #: