what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / sulagna samapika
what will be the output of printf("%d")
ans-
the outpot is 0
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain logical errors? Compare with syntax errors.
Why do we use pointer to pointer in c?
What is scope rule in c?
What are the different data types in C?
Is that possible to store 32768 in an int data type variable?
What is the difference between formatted&unformatted i/o functions?
Why c is a procedural language?
What are the types of type specifiers?
Explain how can I make sure that my program is the only one accessing a file?
What are the advantage of c language?
Explain about the constants which help in debugging?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How many levels of indirection in pointers can you have in a single declaration?
How to declare a variable?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.