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 |
why wipro wase
Write a program to print numbers from 1 to 100 without using loop in c?
size maximum allocated by calloc()
I came across some code that puts a (void) cast before each call to printf. Why?
What are dangling pointers in c?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Where are c variables stored in memory?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
how to do in place reversal of a linked list(singly or doubly)?
what is differnence b/w macro & functions
Explain a pre-processor and its advantages.