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 |
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
why we use "include" word before calling the header file. is there any special name for that include??????
What is use of pointer?
What is the -> in c?
What is floating point constants?
what is an array
What is the difference between #include <header file> and #include “header file”?
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
What does printf does?
What is the condition that is applied with ?: Operator?
If null and 0 are equivalent as null pointer constants, which should I use?