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

Answers were Sorted based on User's Feedback



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

Answer / 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

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

Answer / tamil venthan s

i asking about from right to left or left to right ...

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

What is omp_num_threads?

0 Answers  


#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?

4 Answers   Infosys,


How can you tell whether two strings are the same?

0 Answers  


What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }

9 Answers   CTS, Wipro,


What is the difference between text and binary modes?

0 Answers  






Can I initialize unions?

0 Answers  


What do you mean by team??

5 Answers   Student,


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

0 Answers  


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  


What will happen when freeing memory twice

2 Answers  


main is a predefined or user define function if user defined why? if predefined whay?

12 Answers   TCS,


Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

0 Answers   Celstream,


Categories