what are the difference between ANSI C and Let Us c and Turbo C
Answer Posted / jagan
C is designed for UNIX only, which was not supported by other OS, that is why its enhanced version came out named as ANSI C.
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is an array? What the different types of arrays in c?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
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 the size of a union variable?
What are the __date__ and __time__ preprocessor commands?
What is a nested formula?
What is an operator?
What are the types of arrays in c?
What are volatile variables in c?
How many bytes is a struct in c?
Explain how can a program be made to print the line number where an error occurs?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is the difference between NULL and NUL?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)