Tell me what are bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
Explain what is a program flowchart and explain how does it help in writing a program?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Is fortran faster than c?
What is table lookup in c?
How do you sort filenames in a directory?
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,
64/square(4)
What is the difference between the local variable and global variable in c?
When should the const modifier be used?