What are the similarities between c and c++?
No Answer is Posted For this Question
Be the First to Post Answer
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
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,
What is the -> in c?
What is the difference between the local variable and global variable in c?
write a program whose output will be- 1 12 123 1234
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
wap to print "hello world" without using the main function.
What type of function is main ()?
What is extern keyword in c?
Explain what is the heap?
I came across some code that puts a (void) cast before each call to printf. Why?
How is = symbol different from == symbol in c programming?