What are the types of macro formats?
No Answer is Posted For this Question
Be the First to Post Answer
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,
Is sizeof a keyword in c?
write a programming in c to find the sum of all elements in an array through function.
What is anagram in c?
what defference between c and c++ ?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What are conditional operators in C?
What is the difference between far and near in c?
When we use void main and int main?
what is the difference between definition and declaration? give me some examples.
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples