What is the Difference between Class and Struct?
Answer Posted / sureshreddy
the diff b/w structure and class is class by deafualt
private, where as structure by default public.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain how do you convert strings to numbers in c?
What is #error and use of it?
What are runtime error?
Process by which one bit pattern in to another by bit wise operation is?
Is there any possibility to create customized header file with c programming language?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Is sizeof a keyword in c?
Is it fine to write void main () or main () in c?
Where in memory are my variables stored?
What is the meaning of c in c language?
Explain what is page thrashing?
What is a newline escape sequence?
What is preprocessor with example?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is the c value paradox and how is it explained?