Write a program to print "hello world" without using a semicolon?
No Answer is Posted For this Question
Be the First to Post Answer
What are header files? What are their uses?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
Write a program to print prime nums from 1-20 using c programing?
What is the difference between arrays and pointers?
How does pointer work in c?
Can stdout be forced to print somewhere other than the screen?
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,
There seem to be a few missing operators ..
Can a variable be both const and volatile?
which of 'arrays' or 'pointers' are faster?
What are the advantages and disadvantages of a heap?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,