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 |
Is c++ based on c?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
1,1,5,17,61,217,?,?.
Are there namespaces in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is .obj file in c?
Tell me about low level programming languages.
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
What are called c variables?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
How do you override a defined macro?
How to reverse a string using a recursive function, with swapping?