What does a pointer variable always consist of?
No Answer is Posted For this Question
Be the First to Post Answer
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
Why we use int main and void main?
What is dangling pointer in c?
What is #line?
Differentiate between functions getch() and getche().
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?
how the compiler treats any volatile variable?Explain with example.
What are bitwise shift operators in c programming?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What is the value of c?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?