What is the difference between malloc calloc and realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain high-order bytes.
What are extern variables in c?
What is a pointer value and address in c?
Is c is a low level language?
What is class and object in c?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
How to establish connection with oracle database software from c language?
What is meant by preprocessor in c?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
a c code by using memory allocation for add ,multiply of sprase matrixes
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
Are there constructors in c?