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 shouldn’t I start variable names with underscores?
Write a program to compute the following 1!+2!+...n!
What is wild pointer in c with example?
List some basic data types in c?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
what is difference between c and c++
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
How can a number be converted to a string?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
biggest of two no's with out using if condition statement
where does malloc() function get the memory?