What is array in C
No Answer is Posted For this Question
Be the First to Post Answer
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
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,
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
What is the diffrent between while and do while statement ?
I heard that you have to include stdio.h before calling printf. Why?
In which area global, external variables are stored?
What is the difference between static and global variables?
What are the __date__ and __time__ preprocessor commands?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What are file streams?
write the program to find multiplication of 2-D matrix??????????
Describe the steps to insert data into a singly linked list.