8/26/08

The C Compiler

The C Compiler (cc)

The simplest method is to type


cc testprog.c

This will try to compile testprog.c, and, if successful, will produce a runnable file called a.out. If you want to give the runnable file a better name you can type


cc testprog.c -o testprog

This will compile testprog.c, creating runnable file testprog.

Loop with C++ Program

This is very similar to the while loop except that the test occurs at the end of the loop body. This guarantees that the loop is executed at least once before continuing. Such a setup is frequently used where data is to be read. The test then verifies the data, and loops back to read again if it was unacceptable.


do
{ printf("Enter 1 for yes, 0 for no :");
scanf("%d", &input_value);
} while (input_value != 1 && input_value != 0)
 
PRIVACY POLICY
c++ Tutorial | c ++ Program