What is the use of #define preprocessor in c?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by dynamic memory allocation in c? What functions are used?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
from which concept of 'c', the static member function of 'c++' has came?
Why is a semicolon (;) put at the end of every program statement?
program for validity of triangle from 3 side
main() { int i=400,j=300; printf("%d..%d"); }
what defference between c and c++ ?
What is calloc() function?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
What are the 32 keywords in c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
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,