Can you write the algorithm for Queue?
No Answer is Posted For this Question
Be the First to Post Answer
How can I use a preprocessorif expression to ?
What is the difference between union and anonymous union?
What is the difference between File pointer and Internal Charecter Pointer?
Is int a keyword in c?
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
How does #define work?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
Why calloc is better than malloc?
what is the difference between malloc() and calloc() function?
Explain how can type-insensitive macros be created?