what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / kalpana.y
There will be no output
because,in printf statement the integer variable is
declared but 'ch' is assinged.it should be 'a' insted
of 'ch'.
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
How are 16- and 32-bit numbers stored?
What is the use of getch ()?
What is data structure in c programming?
c language interview questions & answer
What are file streams?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Can we change the value of #define in c?
number of times a digit is present in a number
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Why c is a mother language?
Explain what are reserved words?
Write program to remove duplicate in an array?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What are the ways to a null pointer can use in c programming language?