main()
{
char ch='356';
Printf("%d",ch);
}



*OUTPUT*:-
-18



*Why?*



main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Wh..

Answer / nmaity

ans is wrong

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

find largest of 3 no

8 Answers  


Write an interactive c program that will encode or decode a line of text. To encode a line of text, proceed as follows: Convert each character, including blank spaces, to its ASCII equivalent. Generate a positive random integer. Add this integer to the ASCII equivalent of each character. The same random integer will be used for the entire line of text. Suppose that N1 represents the lowest permissible value in the ASCII code, and N2 represents the highest permissible value. If the number obtained in step 2 above exceeds N2, then subtract the largest possible multiple of N2 from this number, and add the remainder to N1. Hence the encoded number will always fall between N1 and N2, and will therefore always represent some ASCII character. Display the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text. Be certain, however, that the same random number is used in decoding as was used in encoding.

1 Answers   Amazon, CSJM, HCL, Microsoft, TCS, Wipro,


main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }

4 Answers   Vector, Vector India,


What does static mean in c?

1 Answers  


write a program to generate 1st n fibonacci prime number

2 Answers  






What is indirect recursion? give an example?

4 Answers  


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.

0 Answers   IBM,


Can a variable be both const and volatile?

0 Answers  


Describe explain how arrays can be passed to a user defined function

0 Answers  


What will be the output of x++ + ++x?

20 Answers   MBT, Religare,


what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string

3 Answers  


Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?

0 Answers  


Categories