Answer Posted / shruti
An object is the instance of the class..
it is the only gateway to access the entities defined in
the class..
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Can a variable be both const and volatile?
Why main is used in c?
What is boolean in c?
What is NULL pointer?
Explain what is the purpose of "extern" keyword in a function declaration?
What is a rvalue?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
What is a memory leak? How to avoid it?
What is volatile c?
What is meant by type specifiers?
What does #pragma once mean?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
How can a number be converted to a string?