#include<stdio.h>
#include<conio.h>
void main()
{
char ch='\356';
printf("%d",ch);
}
o/p=-18 why?plz.explain
Answers were Sorted based on User's Feedback
Answer / manish soni bca 3rd year jaipu
in place of 356 we i/p and see o/p;
i/p o/p
0-7 0-7
8-9 56-57
10-17 8-15
| Is This Answer Correct ? | 0 Yes | 1 No |
What is the use of ?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What are the uses of null pointers?
void main() { int i=5; printf("%d",i+++++i); }
How are structure passing and returning implemented?
Can a program have multiple main() functions?
Compare interpreters and compilers.
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What does %d do in c?
What is the auto keyword good for?
When is a void pointer used?
How we can set and clear bit in a byte using macro function?