int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / sateeshbabu aluri
o/p will be: 1 2 only
3 will be ommited because there is no conversion operator
in printf.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What do you mean by c what are the main characteristics of c language?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
Which is better pointer or array?
What are c preprocessors?
Explain how can I convert a string to a number?
using for loop sum 2 number of any 4 digit number in c language
What is the general form of a C program?
What is typedef?
What the advantages of using Unions?
Why doesn't C support function overloading?
Mention four important string handling functions in c languages .
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Explain the process of converting a Tree into a Binary Tree.
Why is c not oop?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.