La présentation est en train de télécharger. S'il vous plaît, attendez

La présentation est en train de télécharger. S'il vous plaît, attendez

Miguel Garzon CrUise Lab - SITE. Introduction Data Types and Sizes Constants Logic Operators Type conversions Example.

Présentations similaires


Présentation au sujet: "Miguel Garzon CrUise Lab - SITE. Introduction Data Types and Sizes Constants Logic Operators Type conversions Example."— Transcription de la présentation:

1 Miguel Garzon CrUise Lab - SITE

2 Introduction Data Types and Sizes Constants Logic Operators Type conversions Example

3 hello.c #include int main(void) { printf("hello, world\n"); return 0; } Compilaton et execution: gcc hello.c./a.out

4 Char: un seul byte Int Float Double Short Long

5 #define MAXLINE 1000 char esc = \\`; int i = 0; int limit = MAXLINE +1; float aFloat = 1.0e-5; const double e = 2.7856;

6 + - * / % (pas applicable pour float et double) int aEntier = 100 % 4; printf(%d est un entier, aEntier);

7 Relationnels: >, =, <= Equalité: ==, !=

8 If operand is long, convert other to long Else if { if either is double, converts other to double} Else if { if either is float, converts other to float}

9 ++ et – Comme prefix: ++counter : incrémente counter avant que sa valeur soit utilisée Comme suffix: counter++ : incrémente counter après que sa valeur a été utilisée Si n= 5 ; x = n++; x = ++n;

10 & : AND ^ : Inclusive OR << : Exclusive OR >> : left shift ~ : ones complement

11 Comme en java! Else if If-Else Switch switch (expression) { case const-expr: statement default: statements }

12 Comme en Java! do-while while For Goto! for ( …) { if (disaster) goto error; } error: printf(bad programming!);

13 Pointeurs Pointeur: groupe de cellules (2-4) qui peuvent garder une addresse c est un char et p est un pointeur qui pointe à c p:c:

14 & donne laddresse à un objet EX. p = &c; p pointe donc à c * Donne accès à lobjet auquel le pointeur pointe.

15 int x =1; y = 2; z[10]; int *ip; À vous de jouer: ip = &x; y= *ip; *ip =0; ip= &z[0];

16 swap (a,b); void swap(int x,int y){ int temp; temp = x; x= y; y =temp; }

17 gcc WriteMyString.c header.h main.c -o main


Télécharger ppt "Miguel Garzon CrUise Lab - SITE. Introduction Data Types and Sizes Constants Logic Operators Type conversions Example."

Présentations similaires


Annonces Google