What does a run-time "null pointer assignment" error mean?
Answer Posted / guest
It means that you've written, via a null pointer, to an
invalid location
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
How can I split up a string into whitespace-separated fields?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What does the && operator do in a program code?
Write a program to check whether a number is prime or not using c?
What is extern c used for?
Why c is faster than c++?
Is swift based on c?
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 does printf does?
What is the right type to use for boolean values in c? Is there a standard type?
When should a far pointer be used?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Can a local variable be volatile in c?
Explain how do you list a file’s date and time?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above