what is available in C language but not in C++?
Answer Posted / mukhtar
In c u can create variable with name new and delete but not
in c++.
| Is This Answer Correct ? | 40 Yes | 22 No |
Post New Answer View All Answers
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
How do I use strcmp?
What are the two types of functions in c?
Why c is called a middle level language?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Difference between constant pointer and pointer to a constant.
What are the benefits of organizational structure?
how to introdu5ce my self in serco
What is a 'null pointer assignment' error?
Is exit(status) truly equivalent to returning the same status from main?
Explain what are global variables and explain how do you declare them?
what are # pragma staments?
When should you use a type cast?