#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
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
All technical questions
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What are c preprocessors?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Is exit(status) truly equivalent to returning the same status from main?
What is pivot in c?
When c language was developed?
Why static variable is used in c?
What are linked lists in c?
What is #include conio h?
Process by which one bit pattern in to another by bit wise operation is?
How can I read in an object file and jump to locations in it?
Explain what will the preprocessor do for a program?
Explain zero based addressing.