what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / paul
It'll give a warnin tat "a is never used...If u Continue
executing...it will the memory addres that is currently
used.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
int i=10; printf("%d %d %d", i, i=20, i);
Can a variable be both constant and volatile?
Write a code to generate a series where the next element is the sum of last k terms.
if p is a string contained in a string?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
How do you write a program which produces its own source code as output?
What is 2c dna?
How do you sort filenames in a directory?
How do I determine whether a character is numeric, alphabetic, and so on?
Why is it important to memset a variable, immediately after allocating memory to it ?
What are the advantages and disadvantages of a heap?
How does pointer work in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
When should structures be passed by values or by references?
Explain the use of fflush() function?