Explain what is the heap?
No Answer is Posted For this Question
Be the First to Post Answer
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
How main function is called in c?
any string of bits of length 'n' represents a unique non- negative integer between.............?
What is file in c language?
What is sizeof array in c?
Two's compliment of -5
Which header file is used for clrscr?
What is the difference between macros and inline functions?
what is constant pointer?
What are the advantages of c language?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }