printf("%d",(printf("Hello")); What it returns?
Answer Posted / dally
It will print hello with length of 5.Because return value of
printf is length of that string.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
how to introdu5ce my self in serco
What are the 3 types of structures?
What is structure of c program?
What are the different types of control structures?
Explain the difference between call by value and call by reference in c language?
What is extern keyword in c?
What is the use of bitwise operator?
What is array of structure in c?
How can I ensure that integer arithmetic doesnt overflow?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Explain what does the function toupper() do?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.