Compare and contrast compilers from interpreters.
No Answer is Posted For this Question
Be the First to Post Answer
How to add two numbers without using semicolon n c????
How can I split up a string into whitespace-separated fields?
Which of these functions is safer to use : fgets(), gets()? Why?
write a program to print the all 4digits numbers & whose squares must me even numbers?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
main() {int a=200*200/100; printf("%d",a); }
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
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,
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
write a program to display the numbers having digit 9 in the given range from 1 to 100
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?