1 / 26

C programming language

C programming language. It 325 operating system. Why use C instead of Java. Intermediate-level language: Low-level features like bit operations High-level features like complex data-structures Access to all the details of the implementation Explicit memory management

rudolf
Télécharger la présentation

C programming language

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. C programming language It 325 operating system

  2. Why use C instead of Java • Intermediate-level language: • Low-level features like bit operations • High-level features like complex data-structures • Access to all the details of the implementation • Explicit memory management • Explicit error detection • Better performance than Java All this make C a far better choice for system programming.

  3. Goals of Tutorial • Introduce basic C concepts: • Need to do more reading on your own • Warn you about common mistakes: • More control in the language means more room for mistakes • C programming requires strict discipline • Provide additional information to get you started • Compilation and execution

  4. Example1 /* hello world program */ #include <stdio.h> void main() { printf("Hello World\n"); // print to screen }

  5. Introduction A C Program contains functions and variables. The functions specify the tasks to be performed by the program. Ex: The above program has one function called main. This function tells your program where to start running. main functions are normally kept short and calls different functions to perform the necessary sub-tasks. All C codes must have a main function.

  6. Introduction C is case-sensitive. C also denotes the end of statement with a semi-colon like Java. The // or /* comment */ designates a comment. #includesimply includes a group of functions from the filename specified by(<...>). Ex:abovestdio.h contains a list of standard functions for C to use, the function that our program above uses is printf. Printf takes a string of characters between quotation marks, and outputs them to the screen.

  7. Primitive Types • Integer types: • char : used to represent characters or one byte data(not 16 bit like in Java) • int, short and long : versions of integer (architecture dependent) • can be signed or unsigned • Floating point types: float and double like in Java. • No boolean type, int or char used instead. • 0 => false • ≠0 => true

  8. Primitive Types Examples char c=’A’; int i=-2234; unsigned intui=10000; float pi=3.14; double long_pi=0.31415e+1;

  9. Arrays and Strings • Arrays: /* declare and allocate space for array A */ int A[10]; for (int i=0; i<10; i++) A[i]=0; • Strings: arrays of char terminated by \0 char[] name=“IT421"; name[4]=’5’; • Functions to operate on strings in string.h. • strcpy, strcmp, strcat, strstr, strchr.

  10. printffunction Syntax: printf(formating_string, param1, ...) Formatingstring: text to be displayed containing special markers where values of parameters will be filled: %d for int %c for char %f for float %lf for double %s for string Example: printf("The number of students in %s is %d.\n", “IT421", 95);

  11. Pointers address of variable: index of memory location where variable is stored (first location). pointer : variable containing address of another variable. type* means pointer to variable of type type. Example: inti; int* ptr_int; /* ptr_int points to some random location */ ptr_int= &i; /* ptr_int points to integer i */ (*ptr_int) = 3; /* variable pointed by ptr_int takes value 3 */ & address operator, * dereference operator. Similar to references in Java.

  12. Pointers (cont.) • Attention: dereferencing an uninitialized pointer can have arbitrary effects (including program crash). • Good programming advice: • if a pointer is not initialized at declaration, initialize it with NULL, the special value for uninitialized pointer • before dereferencing a pointer check if value is NULL int* p = NULL; . . . if (p == NULL){ printf("Cannot dereference pointer p.\n"); exit(1); }

  13. Common Syntax with Java • Operators: • Arithmetic: +,-,*,/,% ++,--,*=,... • Relational: <,>,<=,>=,==,!= • Logical: &&, ||, !, ? : • Bit: &,|,ˆ,!,<<,>>

  14. Common Syntax with Java (cont.) • Language constructs: • if( ){ } else { } • while( ){ } • do { } while( ); • for(i=0; i<100; i++){ } • switch( ) { case 0: ... } • break, continue, return • No exception handling statements.

  15. Functions • Provide modularization: easier to code and debug. • Code reuse. • Additional power to the language: recursive functions. • Arguments can be passed: • by value: a copy of the value of the parameter handed to the function • by reference: a pointer to the parameter variable is handed to the function • Returned values from functions: by value or by reference

  16. Functions – Basic Example #include <stdio.h> int sum(int a, int b); /* function declaration or prototype */ int psum(int* pa, int* pb); void main(void){ inttotal=sum(2+2,5); /* call function sum with parameters 4 and 5 */ printf("The total is %d.\n",total); } /* definition of function sum; has to match declaration signature */ intsum(int a, int b){ /* arguments passed by value */ return (a+b); /* return by value */ } intpsum(int* pa, int* pb){ /* arguments passed by reference */ return ((*pa)+(*pb)); }

  17. Why pass by reference? #include <stdio.h> void swap(int, int); void main(void){ intnum1=5, num2=10; swap(num1, num2); printf("num1=%d and num2=%d\n", num1, num2); } void swap(int n1, int n2){ /* pass by value */ inttemp; temp = n1; n1 = n2; n2 = temp; } $ ./swaptest num1=5 and num2=10 NOTHING HAPPENED

  18. Why pass by reference?(cont.) #include <stdio.h> void swap(int*, int*); void main(void){ intnum1=5, num2=10; int* ptr = &num1; swap(ptr, &num2); printf("num1=%d and num2=%d\n", num1, num2); } void swap(int* p1, int* p2){ /* pass by reference */ inttemp; temp = *p1; (*p1) = *p2; (*p2) = temp; } $ ./swaptest2 num1=10 and num2=5 CORRECT NOW

  19. Example2 #include <stdio.h> void main() { intnumpens; // declare a number variable double cost; // declare a variable that can store decimals printf("How many pens do you want: "); scanf("%d", &numpens); // get input from user cost = 0.55 * numpens; // do some math printf("\nPlease pay %f to the cashier!\n", cost); }

  20. Variable Before a variable can be used it must be declared. Declaring a variable in C is easy, specify the type and the name for your variables. (int , double , char) Ex: double age; int number; char * name; char x;

  21. Input & output function • scanf function simply gets a value from the user. • Printftakes a string of characters between quotation marks, and outputs them to the screen. • Notice some special character sequences contained in both the scanf and printf : • %f , %c , %s and %d. These tell printf and scanf what type of variables to expect. • %f corresponds to double, %d is for int % s for string and %c for character.

  22. Example3: Dealing with string #include <stdio.h> void main() { char * name; printf("what is your name: "); scanf("%s", name); // get input from user printf(“ your name %s\n", name); } #include <stdio.h> #include<stdlib.h> void main() { char *name; name = (char *) malloc(10); printf("what is your name: "); scanf("%s", name); printf(" your name %s\n ", name); }

  23. Programs with Multiple Files File mypgm.h: void myproc(void); /* function declaration */ intmydata; /* global variable */ Usually no code goes into header files, only declarations. File mypgm.c: #include <stdio.h> #include "mypgm.h" void myproc(void){ mydata=2; ... /* some code */ }

  24. Programs with Multiple Files (cont.) File main.c: #include <stdio.h> #include "mypgm.h" void main(void){ myproc(); } Have to compile files mpgm.c and main.c to produce object files mpgm.obj and main.obj (mpgm.o and main.oon UNIX). Have to link files mpgm.obj, main.obj and system libraries to produce executable. Compilation usually automated using nmake on Windows and make on UNIX.

  25. Things to remember • Initialize variables before using, especially pointers. • Make sure the life of the pointer is smaller or equal to the life of the object it points to. • do not return local variables of functions by reference • do not dereference pointers before initialization or after deallocation • C has no exceptions so have to do explicit error handling. • Need to do more reading on your own and try some small programs.

  26. Compile and run your C program under Linux The program hello.c can be compiled with the GCC as follows: gcc -o hello hello.c The -o option informs the compiler of the desired name for the executable (i.e., runnable) file that it produces. The name used in this example is hello. If the -o option is omitted, the compiler will give the name a.out to the executable file. ./hello you run by the program typing 'hello' at the command line.

More Related