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 the difference between text files and binary files?
Tell us the use of fflush() function in c language?
What is the difference between procedural and functional programming?
Write program to remove duplicate in an array?
How is a structure member accessed?
What is the difference between text and binary modes?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Why should I use standard library functions instead of writing my own?
What are the different types of control structures in programming?
Differentiate between a structure and a union.
Explain the priority queues?
Is it better to use a macro or a function?
What is a lookup table in c?
Differentiate between the expression “++a” and “a++”?
What are formal parameters?