printf("%d",(printf("Hello")); What it returns?
Answer Posted / praneeth
It doesn't because in printf access specifier is Integer
but to display Hello we should use %s.
| Is This Answer Correct ? | 1 Yes | 22 No |
Post New Answer View All Answers
What is the difference between volatile and const volatile?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What is nested structure?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
When was c language developed?
In C, What is the #line used for?
Why is structure padding done in c?
What is difference between constant pointer and constant variable?
What is chain pointer in c?
What type is sizeof?
List the different types of c tokens?
how to write optimum code to divide a 50 digit number with a 25 digit number??
what is the difference between 123 and 0123 in c?
How are pointers declared in c?