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
Differentiate between functions getch() and getche().
What is chain pointer in c?
Explain the meaning of keyword 'extern' in a function declaration.
What is a function in c?
What functions are used for dynamic memory allocation in c language?
Is there a way to compare two structure variables?
Explain spaghetti programming?
What is difference between static and global variable in c?
What are the types of data types and explain?
What is character constants?
What is volatile c?
What is scope and lifetime of a variable in c?
When should a far pointer be used?
Define circular linked list.
Why enum is used in c?