two progs are given. one starts counting frm 0 to MAX and
the other stars frm MAX to 0. which one executes fast.
Answer Posted / venkatesh
depends on program
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you apply link and association interchangeably?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What extern c means?
Explain void pointer?
What library is sizeof in c?
What is c value paradox explain?
What are local variables c?
Why we use stdio h in c?
Why doesn't C support function overloading?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Write a program to know whether the input number is an armstrong number.
Are bit fields portable?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Why isnt any of this standardized in c?
What is calloc malloc realloc in c?