Featured

Swift, the new programming language by Apple

Apple has again surprised the whole community of developers presenting their new programming language to which they have named Swift, a language according to Craig Federighi is fast, modern and write more secure and reliable code, eliminating some errors common programming. This new language is called to replace the current Objective-C, but while this happens, […]

Swift, the new programming language by Apple Read More »

Swift is a new object-oriented programming language

Some C++ programming Questions and Solutions

Q1: WAP to demonstrate how ambiguity is avoided in single inheritance using scope resolution operator. Ans: #include<iostream.h> Class A { public: void display() { cout<<”An”; } }; class B:public A { void display() { cout<<”Bn”; } }; int main() { B b;                      //derived class object b.display();         // invokes display() in B b.A::display();    // invokes display()

Some C++ programming Questions and Solutions Read More »

C++ unofficial.sh - GeeksProgramming
Scroll to Top