C

File handling in C

File handling in C allows us to use our C program to create, update, read, and delete files stored on…

3 years ago

Pointers with function in c

We can create a pointer pointing to a function in the same way that we can create a pointer of…

3 years ago

Pointer operations

Just like any other data type, we can perform various arithmetic operations on pointers. All pointers int, float, long, and…

3 years ago

Pointer to Pointer in C

A pointer variable stores the address of another pointer variable; this is referred to as a pointer to a pointer…

3 years ago

Pointer to structure

The structure pointer points to the memory block address where the Structure is stored. It's used to make complex data…

3 years ago

Pointer to array

An array name is a constant pointer to the array's first element. As a result, in the declaration double marks[50];…

3 years ago

Pointer in C

In C, a pointer is a variable that stores the address of another variable. This variable can be of any…

3 years ago

Unions in C

A union is a particular data type in C that allows several data types to be stored in the same…

3 years ago

Typedef in C

Typedef in C is used to redefine the name of the existing variable type. It generally increases the readability and…

3 years ago

Nested Structure in C

C allows us to nest one structure within another structure, which allows us to design complicated data types. This type…

3 years ago