Explain why can’t constant values be used to define an array’s initial size?
No Answer is Posted For this Question
Be the First to Post Answer
Two's compliment of -5
Is it possible to execute code even after the program exits the main() function?
Explain following declaration int *P(void); and int (*p)(char *a);
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
input any 4 digit number and find the difference of all the digits?
what is the difference between 123 and 0123 in c?
What is the use of the sizeof operator?
What are the different pointer models in c?
can anyone please tell about the nested interrupts?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
Why do we need a structure?
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,