what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / uttama
garbage value will be given
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of the statement: strcat (S2, S1)?
Why doesnt that code work?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is nested structure?
Ow can I insert or delete a line (or record) in the middle of a file?
Explain what is the most efficient way to store flag values?
Can you please explain the scope of static variables?
What is a node in c?
Can an array be an Ivalue?
What is the difference between int main and void main in c?
Why do we use stdio h and conio h?
What does the format %10.2 mean when included in a printf statement?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
When is a void pointer used?
Can include files be nested?