what is the flow of execution in cprogram?
ex:printf();,scanf();
Answers were Sorted based on User's Feedback
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 |
Answer / tamil venthan s
i asking about from right to left or left to right ...
| Is This Answer Correct ? | 1 Yes | 1 No |
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
What are global variables and explain how do you declare them?
What are qualifiers and modifiers c?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
What is adt in c programming?
which will be first in c compiling ,linking or compiling ,debugging.
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
how 2 compile & execute c program with out using editor?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What do the functions atoi(), itoa() and gcvt() do?