What will be your course of action for a push operation?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between constant pointer and constant variable?
What is c programming structure?
How do c compilers work?
What is the difference between File pointer and Internal Charecter Pointer?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is #pragma statements?
WHAT IS PRE POSSESSORS?
what defference between c and c++ ?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
What is a buffer in c?
Write a program to find the smallest and largest element in a given array in c language