Is stack a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does a function declared as pascal do differently?
What is a far pointer?What is the utility?
What is C language Terminator?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier.  Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed.  When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed.  Sequence of take-off is the sequence of addition to the waitlist
WAP to accept first name,middle name & last name of a student display its initials?
given post order,in order construct the corresponding binary tree
Can you define which header file to include at compile time?
Is it cc or c in a letter?
What is the basic structure of c?
what is diff b/w huge & far & near pointer??
#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?
What is the maximum no. of arguments that can be given in a command line in C.?