Sunday, 26 July 2015

  • Sunday, July 26, 2015

C++ hello world example

#include<iostream>
 
using namespace std;
 
int main()
{
 cout << "Hello World\n";
 return 0;
}

C++ hello world class program

#include<iostream>
 
using namespace std;
 
// Creating class
 
class Message
{
  public:
 
    void display() {
      cout << "Hello World\n";
    }
};
 
int main()
{
 Message c;    // Creating object
 c.display();  // Calling function
 
 return 0;
}

Related Posts:

  • IBPS CLERICAL SLLYBUS (pre) IBPS Clerk Syllabus 2015 Institute of Banking Personnel Selection (IBPS) has taken up over all responsibility to organize Common Written Examination (CWE)for the post of Clerk per year as well as othe… Read More
  • SBI Declared Clerk Prelims Result The State Bank of India is  announced the results of its Clerk 2016 preliminary examination on its official website soon. The exam was held between May 22 and June 5 this year for the recruitment of 18,000 junior as… Read More
  • SBI CLERK MAINS RESULT NOTIFICATION SBI Clerk Mains Results 2016 for Junior Assistants (JA) and Junior Agricultural Associate (JAA) have been further delayed at the official website.  Adding to anxiety and confusion among the candidates is that… Read More
  • IBPS Clerk Result 2016 For CWE 5 Main Exam and IBPS Clerk 5 Main exam Score Card Available Institute of Banking Personnel Selection will soon release the IBPS CWE Clerical Cadre 5 Result 2015-2016 for the main exam at the official website of IBPS. The candidates can check their result from the official website … Read More
  • IBPS CWE V CLERICAL NOTIFICATION OUT The online examination (Preliminary and Main) for Clerical cadre Posts in the Participating Organisations January 2016. Any eligible candidate, who aspires to join any of the in that cadre, is required to register for the … Read More
Related Posts Plugin for WordPress, Blogger...

Vacancy

RBI has announced the recruitment for 134 GRADE B OFFICERS.
 The examination will be in two phases.
 The detailed advertisement will be published on 5th October.

Popular Posts