#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 |
Do you know the difference between exit() and _exit() function in c?
can anyone please tell about the nested interrupts?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
State the difference between x3 and x[3].
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
What is break statement?
Explain what are reserved words?
How do we make a global variable accessible across files? Explain the extern keyword?
write a program to insert an element at the specified position in the given array in c language
In a switch statement, what will happen if a break statement is omitted?