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 total generic pointer type?
What is memcpy() function?
What is dynamic memory allocation?
What is use of integral promotions in c?
What is the difference between array_name and &array_name?
In a byte, what is the maximum decimal number that you can accommodate?
What is clrscr ()?
Explain how do you print an address?
What is nested structure in c?
What is "Hungarian Notation"?
What are the 4 data types?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
how many errors in c explain deply
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Can a variable be both constant and volatile?