What is overriding in oops?
No Answer is Posted For this Question
Be the First to Post Answer
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }
What is nutshell in programming language?
1 Answers Satyam, Tech Mahindra,
what are the different types of qualifier in java?
What is Hashing and how is it done? Pictorial form?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What are the features of oop?
can inline function declare in private part of class?
Write a C++ program to conduct an election of a mayor.Declare a class ELECTION With the following specification: Data member: Name 25 character Age Integer symbol 1 character Member functions: To accept data for 20 contestant To accept symbol as voting from 100 voters. To declare the winner and the loser.
1 Answers Global Academy, Infotech,
What does and I oop mean?
What is the difference between encapsulation and polymorphism?
What does enum stand for?
Differences between inline functions and non-inline functions?