Thursday, 25 July 2013

Difference between classes and structures in c++.

Simple but many(or few) people misunderstood or are a not aware ability of structure in cpp to hold both member functions and data members.                 In C++, structure can have both variables and functions as members.It can also declare some of its members as 'private' so that they cannot be accessed directly by the external functions.Since class is a specially introduced data type in C++, most of programmers use the structures for holding only data, and classes to hold both the data and the functions.The...

Sunday, 14 July 2013

How to configure VPN in Kali Linux?

From the creators of BackTrack comes Kali Linux, the most advanced and versatile penetration testing distribution ever created.As compared to backtrack5r3(bt5r3)  its successor Kali Linux   is more user friendly and more powerful & Without sound problems,software manger problem and many more(which were faced by BT5R3). Here we are discussing about configuring VPN(Virtual Private Network) in Kali. For this we need to download...

Monday, 3 June 2013

non graphical cricket game program code with c++

cricket game coded with c++: user have choice to select team and opponent form three given teams - INDIAN team, AUSTRALIAN team, PAKISTAN team. tossing available 2 over game 3 wickets allows you to play game completely( ball- 2 overs, bat- 2 overs)  based on numbers coded by Noah Paul Jose . #include<iostream.h> #include<conio.h> #include<stdio.h> #include<ctype.h> #include<stdlib.h> int...

Thursday, 30 May 2013

download turbo c++ 4.5 compiler for windows..

turbo c++ 4.5 compiler with exception handling DOWNLOAD YOUR FILE HERE windows executive .rar file uploaded in datafilehost.com. how to install your downloaded file: unzip downloaded .rar  open the extracted folder  double click on install.exe  follow instructions ,complete installation and enjoy your coding first usage: open installed directory (C:\TCWIN45 by default) open folder named "bin" double click on "TCW" (executive file)  enjoying coding thank you ...

Saturday, 4 May 2013

How to change DNS in Ubuntu?

DNS(Domain Name System) Google public dns open NETWORK option in system settings    click options in the window that appears                          Select the IPv4 Settings or IPv6 Settings    select Automatic (DHCP) addresses only and enter DNS server add.  in DNS server field                   ...

Wednesday, 24 April 2013

How to switch Ubuntu, from GUI to text mode?

transforming from GUI to text mode is really simple process:                               Press ‘Ctrl + Alt + F1′ - GUI to text mode                              ...

Sunday, 21 April 2013

Turn off guest session in Ubuntu 12.04

open terminal enter following command P { margin-bottom: 0.21cm; }  P { margin-bottom: 0.21cm; }                                           gksu gedit /etc/lightdm/lightdm.conf    add    allow-guest=false to lightdm.conf file then restart lightdm using command                                                          ...