what is the flow of execution in cprogram?
ex:printf();,scanf();

Answer Posted / shruthi.k.a

according to me,
the flow of execution in cprogram is from top to bottom.
that is ex: printf();scanf();
printf is executed first than is the scanf().

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why isn't any of this standardized in c? Any real program has to do some of these things.

621


Write a program to print "hello world" without using a semicolon?

591


Which control loop is recommended if you have to execute set of statements for fixed number of times?

805


How can I find the modification date of a file?

698


What is the use of putchar function?

646






How can I do serial ("comm") port I/O?

682


Why should I prototype a function?

630


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5192


Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?

597


What does struct node * mean?

595


how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?

1503


What is the difference between new and malloc functions?

574


What is the scope of local variable in c?

573


‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .

2368


What is the best style for code layout in c?

628