What is the purpose of realloc()?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
How does the assert() function work?
a simple c program using 'for' loop to display the output 5 4 3 2 1
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
number of times a digit is present in a number
What functions are used in dynamic memory allocation in c?
Differentiate abs() function from fabs() function.
Write a program to exchange two variaables without temp
What is pointers in c?
What is the modulus operator?