The document discusses some key concepts in C programming including pointers and printf. Pointers allow accessing and modifying memory locations directly using dereferencing operators like * and &. The difference between i and ii under pointers is that i increments the pointer Ptr after dereferencing it to read the value, while ii increments the value at the address Ptr points to. Printf is used to output values, with %c used to print a single character value.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
34 views1 page
A Little Bit of C
The document discusses some key concepts in C programming including pointers and printf. Pointers allow accessing and modifying memory locations directly using dereferencing operators like * and &. The difference between i and ii under pointers is that i increments the pointer Ptr after dereferencing it to read the value, while ii increments the value at the address Ptr points to. Printf is used to output values, with %c used to print a single character value.