who is the founder of c
Answer Posted / surender
Dennis Richie
| Is This Answer Correct ? | 30 Yes | 2 No |
Post New Answer View All Answers
Why we use stdio h in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Define Array of pointers.
How do we declare variables in c?
Why is struct padding needed?
What is a void pointer? When is a void pointer used?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What does it mean when a pointer is used in an if statement?
Can we use visual studio for c?
Do you know the use of fflush() function?
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
What is function and its example?
Do you know pointer in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Are global variables static in c?