Download presentation
Presentation is loading. Please wait.
Published byLindsay Carol Hunt Modified over 9 years ago
1
7. Pointers, Dynamic Memory 20 th September IIT Kanpur 1C Course, Programming club, Fall 2008
2
Agenda Pointer to Pointer Dynamic Memory Allocation Pointer to functions C Course, Programming club, Fall 20082
3
Pointer to Pointer Declaration – Place an additional asterisk newbalance is a pointer to a float pointer. 3C Course, Programming club, Fall 2008 double **newbalance;
4
Pointer to Pointer contd.. {program: pointers.c} 4C Course, Programming club, Fall 2008 #include int main() { int x, *p, **q; x = 10; p = &x; q = &p; printf(“%d %d %d\n”, x, *p, **q); return 0; }
5
Dynamic Memory Allocation To allocate memory at run time. malloc(), calloc() – both return a void* you’ll need to typecast each time. 5C Course, Programming club, Fall 2008 char *p; p = (char *)malloc(1000); /*get 1000 byte space */ int *i; i = (int *)malloc(1000*sizeof(int));
6
Dynamic Memory Allocation contd.. To free memory free() – free(ptr) frees the space allocated to the pointer ptr 6C Course, Programming club, Fall 2008 int *i; i = (int *)malloc(1000*sizeof(int));. free(i);
7
Pointers to functions A function pointer stores the address of the function. Function pointers allow: – call the function using a pointer – functions to be passed as arguments to other functions return_type (*function_name)(type arg1, type arg2…) {program: function_pointer.c} 7C Course, Programming club, Fall 2008
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.