#include<stdio.h>
#include<conio.h>
void main()
{
char ch='\356';
printf("%d",ch);
}
o/p=-18 why?plz.explain
Answer Posted / 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 |
Post New Answer View All Answers
Explain what does a function declared as pascal do differently?
Tell us the use of fflush() function in c language?
What is a pointer and how it is initialized?
Can you write the function prototype, definition and mention the other requirements.
How can you call a function, given its name as a string?
What are called c variables?
How can I write a function analogous to scanf?
How do you determine the length of a string value that was stored in a variable?
Explain what is a const pointer?
What is the difference between %d and %i?
What is the difference between variable declaration and variable definition in c?
Which is better malloc or calloc?
What is meant by recursion?
Explain what is the general form of a c program?
Can you please explain the difference between malloc() and calloc() function?