Why malloc is faster than calloc?
No Answer is Posted For this Question
Be the First to Post Answer
can a union be self-referenced?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
wat is the difference between array and pointer?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
Is c programming hard?
two variables are added answer is stored on not for third variable how it is possible?
Are enumerations really portable?
Implement bit Array in C.
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is use of null pointer in c?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%