#include<stdio.h>
#include<conio.h>
void main()
{
char ch='\356';
printf("%d",ch);
}
o/p=-18 why?plz.explain
Answer Posted / dreambiren143
o/p=-18
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What happens if you free a pointer twice?
When was c language developed?
Explain the difference between ++u and u++?
What are the types of bitwise operator?
What are the ways to a null pointer can use in c programming language?
How do you declare a variable that will hold string values?
Explain what is the best way to comment out a section of code that contains comments?
Can we change the value of #define in c?
When should the volatile modifier be used?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is declaration and definition in c?
What is dynamic dispatch in c++?
What is the difference between malloc() and calloc() function in c language?
When is a “switch” statement preferable over an “if” statement?
What are inbuilt functions in c?