What is the heap in c?
No Answer is Posted For this Question
Be the First to Post Answer
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
how to set Nth bit of variable by using MACRO
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
what is the defrenece between structure and union
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
what is use of loop?
What is c value paradox explain?
int i=10; printf("%d %d %d", i, i=20, i);
how to do in place reversal of a linked list(singly or doubly)?
What is function prototype?