Windows

Windows related topics

Search Engine on C Programming

Search for C/C++/Unix Programming related information.



My score!

Quiz Results

--------------------------------------------------------------------------------

1. Several declarations involving pointers are shown below. Pick the correct solution.
int *ptr;
You answered: B (ptr is a pointer to an integer quantity) Correct!

2. Several declarations involving pointers are shown below. Pick the correct solution.
int *ptr[10];
You answered: C (ptr is a 10-element array of pointers to integer quantities) Correct!

3. Several declarations involving pointers are shown below. Pick the correct solution.
int (*ptr)[10];

(Slides) Debugging Applications with GNU Debugger

(Video Lecture) Programming & debugging series - tutorial 4

We code a small c program which we'll examine using the gdb debugger so to observe how the stack gets used and organized.

(Video Lecture) Programming & debugging series - tutorial 3

We programmed a small program with an intentionally bug in it so we can use the debugger to find it and eventually correct it.

Syndicate content