Category: C
-
CPointer to array
An array name is a constant pointer to the array’s first element. As a result, in the declaration marks is…
March 27, 2022
-
CPointer to structure
The structure pointer points to the memory block address where the Structure is stored. It’s used to make complex data…
March 28, 2022
-
CPointer to Pointer in C
A pointer variable stores the address of another pointer variable; this is referred to as a pointer to a pointer…
March 31, 2022
-
CPointer operations
Just like any other data type, we can perform various arithmetic operations on pointers. All pointers int, float, long, and…
April 2, 2022
-
CPointers with function in c
We can create a pointer pointing to a function in the same way that we can create a pointer of…
April 2, 2022
-
CFile handling in C
File handling in C allows us to use our C program to create, update, read, and delete files stored on…
April 3, 2022
-
CError Handling in C
The response and recovery procedures from error conditions present in a software application are referred to as error handling. C…
April 4, 2022
-
CDynamic Memory Allocation
In the C programming language, the concept of dynamic memory allocation allows the programmer to allocate memory at runtime. Four…
April 5, 2022
-
CCommand Line Argument
When your C programs are run, you can pass some values from the command line to them. These values are…
April 7, 2022
-
CMiscellaneous Program(Palindrome Number)
A palindrome is a sequence that, when reversed, looks exactly like the original. For example, abba, level, 232, and so…
April 8, 2022
-
CMiscellaneous Program(reverse the case of input string)
A program to reverse the case of input characters is provided below. islower() is a system-defined function in the ctype.h…
April 8, 2022
-
CMiscellaneous Program(Armstrong Number)
An Armstrong number is an n-digit number whose sum of digits raised to the nth power equals the number itself. Take,…
April 8, 2022