What is the heap?
No Answer is Posted For this Question
Be the First to Post Answer
In a switch statement, what will happen if a break statement is omitted?
Describe the order of precedence with regards to operators in C.
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Who invented bcpl language?
What is double pointer in c?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What is the difference between typeof(foo) and myFoo.GetType()?
How pointers are declared?
Explain in detail how strset (string handling function works )pls explain it with an example.
How can I manipulate individual bits?
how to build a exercise findig min number of e heap with list imlemented?
What are the types of type qualifiers in c?