Posted inClass 12 Computer Engineering Notes
Posted inClass 9 Computer Engineering Notes
Class 9 | Pointer | C Programming Notes
Pointer A pointer is a special variable that stores the memory address of another variable. A pointer also needs to be declared in a program but cannot store data…
Posted inClass 9 Computer Engineering Notes
Class 9 | Structure and Union | C Programming Notes
STRUCTURE A structure is user-defined data type that can hold multiple data of the same data types or varying data types. The data items in a structure are referred…
Posted inClass 9 Computer Engineering Notes
Class 9 | Arrays and Strings | C Programming Notes
Array Array is the collection of multiple values in a single variable stored in a contiguous memory location. In array, we can access the element of array by…
Posted inClass 9 Computer Engineering Notes
Class 9 | Functions | C Programming Notes
Function Function is a block of code which only runs when it is called. Every C program has at least one function which is main function with we can…
Posted inClass 9 Computer Engineering Notes
Class 9 | Control Flow Statement | C Programming Notes
Control flow statement Control flow statements also referred as control structures are used to control the flow of execution of statements of a program. The use of control statements…