What does the && operator do in a program code?
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,
Explain the difference between malloc() and calloc() in c?
Differentiate between ordinary variable and pointer in c.
What is #include stdio h?
Explain how can I convert a number to a string?
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
write a program in c language to print your bio-data on the screen by using functions.
Which function in C can be used to append a string to another string?
What is the difference between void main() and int main()?
What is the return type of sizeof?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
how to generate the length of a string without using len funtion?