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 / sriharsha karanth
Both Will Execute Fast
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain a pre-processor and its advantages.
what is stack , heap ,code segment,and data segment
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
How can you increase the size of a statically allocated array?
How can I read data from data files with particular formats?
What are the types of data structures in c?
Is it fine to write void main () or main () in c?
what are bit fields in c?
Explain what is a program flowchart and explain how does it help in writing a program?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the role of && operator in a program code?
What is a macro?
Explain low-order bytes.
Explain how does free() know explain how much memory to release?