What should malloc(0) do?
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Should I learn data structures in c or python?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
how does printf function work
how to find the sizof of any datatype using bit manipulations
Write a program to add a given duration with time(24hrs format)
What are the different pointer models in c?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
What is #define?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
Tell me with an example the self-referential structure?
What do you know about the use of bit field?