Is there something we can do in C but not in C++?
Declare variable names that are keywords in C++ but not C.
Answer Posted / lucky
#include<stdio.h>
#include<conio.h>
void main()
{
int class=0;
printf("5d",class);
getch();
}
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
What is static memory allocation?
pierrot's divisor program using c or c++ code
what are the facialities provided by you after the selection of the student.
How to draw the flowchart for structure programs?
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
Can you write the algorithm for Queue?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Which driver is a pure java driver
What is difference between structure and union in c programming?
What’s a signal? Explain what do I use signals for?
What does double pointer mean in c?
How many types of errors are there in c language? Explain
where are auto variables stored? What are the characteristics of an auto variable?
Write a program to print fibonacci series using recursion?