Bhanu Priya has Published 1581 Articles

Explain dynamic memory allocation in C with an example

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:30:19

11K+ Views

ProblemFind the sum of n numbers entered by user using dynamically allocated memory using C programming.SolutionThe Dynamic memory allocation enables the C programmers to allocate memory at runtime.The different functions that we used to allocate memory dynamically at run time are −malloc () − allocates a block of memory in ... Read More

Post and Pre incremented of arrays in C language

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:28:40

4K+ Views

ProblemExplaining the array post and pre incremented concept with the help of C program.SolutionIncrement operator (++) −It is used to increment the value of a variable by 1There two types of increment operators − pre increment and post increment.Increment operator is placed before the operand in preincrement and the value ... Read More

Explain the concept of pointer accessing in C language

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:27:22

4K+ Views

Pointer is a variable which stores the address of other variable.Pointer declaration, initialization and accessingConsider the following statement −int qty = 179;Declaring a pointerint *p;‘p’ is a pointer variable that holds the address of another integer variable.Initialization of a pointerAddress operator (&) is used to initialize a pointer variable.int qty ... Read More

Example program on Dynamic memory allocation in C language

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:25:51

3K+ Views

ProblemFind out the maximum and minimum from an array using dynamic memory allocation in C.SolutionThe Dynamic memory allocation enables the C programmers to allocate memory at runtime.The different functions that we used to allocate memory dynamically at run time are −The malloc () − allocates a block of memory in ... Read More

Matrix row sum and column sum using C program

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:21:57

3K+ Views

ProblemLet’s write a C program to compute the row sum and column sum of a 5 x 5 array using run time compilation.SolutionIn this program, we are entering the values of array which is of size 5X5 matrix during runtime in the console, with the help of for loops we ... Read More

Explain the concept of Array of Pointer and Pointer to Pointer in C programming

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:20:19

1K+ Views

Array Of PointersJust like any other data type, we can also declare a pointer array.Declarationdatatype *pointername [size];For example, int *p[5]; //It represents an array of pointers that can hold 5 integer element addressesInitializationThe ‘&’ is used for initializationFor example,int a[3] = {10,20,30}; int *p[3], i; for (i=0; i

Explain the concepts of Pointers and arrays in C language

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:17:06

3K+ Views

Pointers and arraysContinuous memory locations are allocated for all the elements of the array by the compiler.The base address is the location of the first element in the array.For example, int a [5] = {10, 20, 30, 40, 50};The five elements are stored as follows −If ‘p’ is declared as ... Read More

Explain Arithmetic operations using pointers in C language?

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:15:19

1K+ Views

Pointer is a variable which stores the address of other variable.Pointer declaration, initialization and accessingConsider the following statement −int qty = 179;Declaring a pointerint *p;‘p’ is a pointer variable that holds the address of another integer variable.Initialization of a pointerAddress operator (&) is used to initialize a pointer variable.int qty ... Read More

How to pass individual elements in an array as argument to function in C language?

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:10:07

2K+ Views

If individual elements are to be passed as arguments, then array elements along with their subscripts must be given in function call.To receive the elements, simple variables are used in function definition.Example 1#include main (){    void display (int, int);    int a[5], i;    clrscr();    printf (“enter 5 ... Read More

How to pass entire array as an argument to a function in C language?

Bhanu Priya

Bhanu Priya

Updated on 09-Mar-2021 08:08:41

903 Views

ArrayThe array is a group of related items that store with a common name. Following are the two ways of passing arrays as arguments to functions −sending entire array as argument to functionsending individual elements as argument to functionSending entire array as an argument to a functionTo send entire array ... Read More

Advertisements