What is the difference between Class and Structure?
Answer Posted / rafat-+8801671123467
class is class and structure is structure.
| Is This Answer Correct ? | 6 Yes | 36 No |
Post New Answer View All Answers
What is low level language in simple words?
What is expression parser in c++
What is searching? Explain linear and binary search.
What are c++ tokens?
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
What is the use of c++ programming language in real life?
Difference between pass by value and pass by reference?
Why are pointers not used in c++?
Why c++ is so important?
What is the best ide for c++?
What is setbase c++?
Can we get the value of ios format flags?
Can constructor be private in c++?
What are c++ files?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.