Chapter 1 : General Concept
- What is a local block?
- How do you zero-pad a number in C ?
- What is Difference between Declaration and Definition ?
- How should I decide which integer type to use?
Chapter 2 : String Operations in C
- Reading String with space using the scanf statement
- Why do we need NULL Character / Terminating Character ?
Chapter 3 : Loop Control in C Programming
- What is Difference between for Loop and While Loop ?
- What is Difference between while Loop and do-While Loop ?
- What is Difference between for Loop and do-While Loop ?
Chapter 4 : Pointer
- Are *ptr++ and ++*ptr are same ?
- Are ++*ptr and (*ptr)++ are same ?
- Equivalent Pointer Expression for a[i][j][k][l]
- Size of NULL,EOF
- What is the difference between char *a and char a[]?
Difference Between :