Lets Start Again

Program Structure

# Pre-processor command

Functions ()

Variables _x

" Statements and Expressions "

// Comments

#include <stdio.h>        //Pre-processor Command
int main()                //Function
{    printf("Hello World!");//Function and Statement
return 0;
}                        
                    

Remember not to forget ;

Talk about our type of container

Data Types

Void - not gonna return

int - restricted to Integers

float - understand Real

char - "name" is all about

Wanna Store some data?

Variables - Our Containers

type variable_list;

Lets SUM UP '+'

Operators

+       -       *      /       %       =       ==        >        <        >=       <=

 

and many more...

Made with Slides.com