#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 is the difference between near, far and huge pointers?
How to write a code for reverse of string without using string functions?
What is omp_num_threads?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
In which layer of the network datastructure format change is done
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Explain the difference between null pointer and void pointer.
Define C in your own Language.
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is dangling pointer in c?
What is array within structure?
What is adt in c programming?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Why c is called object oriented language?