27
Jun
2015

C++ OOP:

C++ is a OOP Version of C… A class is a blueprint of an object…..Basically a object…

23
Jun
2015

Structure in C++

struct Books{ char title[50]; char author[50]; char subject[100]; int book_id; }book; #include<iostream> #include<cstring> using namespace std; struct…

23
Jun
2015

c++ input/output stream

I/O stream: #include<iostream> using namespace std; int main(){ char name[50],age; cout<<“enter name:”; cout<<“Age:”; cin>>name>>age; cout<<“Name: “<<name<<endl<<“Age: “<<age<<endl;…

23
Jun
2015

C++ References

#include<iostream> using namespace std; int main() { int i; double d; int &r=i; double &s=d; i=5; cout<<“Value…

23
Jun
2015

Kaspersky 2015 and windows 7 Homegroup problem

KIS: http://support.kaspersky.com/10309#block0 See this link Follow the steps and make your connected network from public to trusted…

18
Jun
2015

Fixing Master Boot Recrord(MBR) issue with BIOS and Windows 7

Insert Windows 7 DVD in the DVD – ROM then Keep Nexting and Repair Windows option will…