0% found this document useful (0 votes)
4 views1 page

C Programming Notes

The document outlines key concepts in C programming, including even and odd number identification, finding the largest of three numbers, and various loop types. It also covers important topics such as pointers, arrays, functions, recursion, structures, and the differences between call by value and call by address. These notes serve as a quick reference for fundamental programming principles in C.

Uploaded by

chavandivya208
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

C Programming Notes

The document outlines key concepts in C programming, including even and odd number identification, finding the largest of three numbers, and various loop types. It also covers important topics such as pointers, arrays, functions, recursion, structures, and the differences between call by value and call by address. These notes serve as a quick reference for fundamental programming principles in C.

Uploaded by

chavandivya208
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

C Programming Important Notes

1. Even or Odd: Number divisible by 2 is even, otherwise odd.

2. Largest of 3 Numbers: Compare a, b, c using if-else conditions.

3. Loop Types: for, while, do-while.

4. Pointer: Variable that stores address of another variable.

5. Array: Collection of similar data types.

6. Functions: Reusable blocks of code.

7. Recursion: Function calling itself.

8. Structure: User-defined data type to group variables.

9. Call by Value: Copy passed, no change in original.

10. Call by Address: Address passed, original value changes.

You might also like