How can you allocate arrays or structures bigger than 64K?
No Answer is Posted For this Question
Be the First to Post Answer
How do c compilers work?
What is non linear data structure in c?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What is 1f in c?
Why c is called a middle level language?
What's the difference between constant char *p and char * constant p?
Explain the red-black trees?
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,
What are structures and unions? State differencves between them.
what is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
Tell us something about keyword 'auto'.
Difference between Function to pointer and pointer to function