Degree Program in Computer Network and System Administration

SAT1200 Chap 2 notes
Home
Academic Plan
Spring 2007
Summer 2007
Fall 2007
Fall 2007 Calendar

 
2.2
  • comments begin with /* and end with */

#include <stdio.h>

  • is a directive to the C preprocessor.
  • lines that begin with # are processed by the preprocessor before the program is compiled.
  • the code above tells the preprocessor to include the contents of the standard input/output header (<stdio.h>

int main( void )

  • apart of every C program
  • the parentheses indicate that main is a program building block called a function
  • C programs contain one or more functions, one of which must be main
  • int (whole number value)
  • void means that main does not return a value

left brace, {, begins the body of every function, ending with a right brace, }. The pair of braces and the portion between is called a block.

printf( "Welcome to C!\n" );

  • instructs the computer to perform an action, namely to print the string;
  • the string is sometimes called a character string, a message, or a literal
  • the entire line is called a statement
  • within the parentheses is called an argument
  • the semicolon is the statement terminator
  • the backslash, \, is an escape character
  • \n means new line
  • \t means horizontal tab
  • \a means alert. sound the system bell.
  • \\ backslash. insert backslash character in a string.
  • \" double quote. insert double quote character in a string.

printf and scanf are not part of the C programming language. The compiler cannot find a spelling error in printf or scanf. When the compiler compiles a printf statement, it merely provides space for the object program for a "call" to the library function. But the compiler does not know where the library functions are - the linker does. When the linker runs it locates the library functions and inserts the proper calls to these library functions in the object program. For this reason, the linked program is called an executable.
 
2.3 another simple C program
 
syntax error is a violation of the program; also called compile errors or compile-time errors
  • placing variable definitions among executable statements causes syntax errors

scanf( "%d", &integer1 ); /* read an integer */

  • scanf is used to obtain a value from the user
  • scanf here has two arguments, "%d" and &integer1
    • the first argument, the format control string, indicates the type of data that should be entered by the user; the %d conversion specifier indicates that the data should be an integer (d stands for "decimal integer"); The % in this context is treated by scanf (and printf) as a special character that begins with a conversion specifier
    • the second argument begins with an ampersand called the address operator; denotes where the data is saved

2.5 arithmetic in C

  • + addition
  • - subtraction
  • * multiplication
  • / division
  • % remainder

Precedence of arithmetic operators
  • PEMDAS

2.6 Decision Making: equality and relational operators

  • x == y "x is equal to y"
  • x != y "x is not equal to y"
  • x > y "x is greater than y"
  • x < y "x is less than y"
  • x >= y "x is greater than or equal to y"
  • x <= y "x is less than or equal to y"

common error 2.18: confusing the equality operator == with the assignment operator =. To avoid confusion, the equality operator should be read "double equals" and the assignment operator should be read "gets."

calculations can be performed inside printf:

printf ("Sum is %d\n", integer1 + integer2);

the ampersand is not necessary in printf

C's keywords: do not use as identifiers

auto
break
case
char
const
continue
default
do
double
else
enum
extern
float
for
goto
if
int
long
register
return
short
signed
sizeof
static
struct
switch
typedef
union
unsigned
void
volatile
while