Skip to main content

Posts

Dev c++ software

Bloodshed Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler. Features are : - Support GCC-based compilers - Integrated debugging (using GDB) - Project Manager - Customizable syntax highlighting editor - Class Browser - Code Completion - Function listing - Profiling support - Quickly create Windows, console, static libraries and DLLs - Support of templates for creating your own project types - Makefile creation - Edit and compile Resource files - Tool Manager - Print support - Find and replace facilities - CVS support                                 Click To Download Dev c++ program

Array Basic

TOPIC : ARRAY Array is used to store collection of variables of same data type. It may be single dimensional type or multidimensional type.Arrays help a lot ,instead of defining variables again and again , use a single array with multiple variables you want to define. It consists of contiguous memory locations, lowest address corresponds to first element in the array. Single dimensional arrays Syntax: type arrayname[ array size] = {}; Type:  type can be any c++ data type Array size:  array size must be integer constant greater than zero Array name:  valid c++ identifier Example :    int x[1]={10};             ==>  Note:   x is an array of one integer with array size one. Example :    int x[10];                     ==>  Note:   here x is an array of 10 integers                 ...

Browsec VPN (How to install VPN in ur browser)

For more discuss and ask question join this group   https://www.facebook.com/groups/143792885956764/ Solved   By : Tahir Siddiqui(Mani) BC-140201235@Vu.edu.pk How to install Browsec VPN in your browser : comments if its usefull for u ...

c++ program to make table

For more discuss and ask question join this group   https://www.facebook.com/groups/143792885956764/ Solved   By : Tahir Siddiqui(Mani) BC-140201235@Vu.edu.pk Today Topic :  make table   

C++ program to MAke Simple calculator

For more discuss and ask question join this group   https://www.facebook.com/groups/143792885956764/ Solved   By : Tahir Siddiqui(Mani) BC-140201235@Vu.edu.pk C++ program to Make Simple calculator //Learn c Language by Tahir Siddiqui(Mani*) //Virtual university of Pakistan //tahirsiddiqui190@gmail.com #include<iostream> #include<cmath> using namespace std; int main() { double num1,num2; char opr,redo;     cout<<"Welcome to the calculater program written by Tahir Siddiqui(Mani*)"<<endl;     cout<<"***************************************************************"<<endl;     cout<<endl<<endl<<endl; do {     cout<<"pleae enter ur desire opertaion which u like to calculate(+,-,*,/,s)";     cout<<"[s stands for swap]:";     cin>>opr;     cout<<"please enter two # to apply ur reque...

Dev c++ 3rd class

For more discuss and ask question join this group   https://www.facebook.com/groups/143792885956764/ Solved   By : Tahir Siddiqui(Mani) BC-140201235@Vu.edu.pk Dev c++ 3rd  lecture : Today Topic :Increment/decrements operators, and side effects : Incrementing (adding 1 to) and decrementing (subtracting 1 from) a variable are so common that they have their own operators in C. There are actually two versions of each operator -- a prefix version and a postfix version. Operator Symbol Form Operation Prefix increment (pre-increment) ++ ++x Increment x, then evaluate x Prefix decrement (pre-decrement) –– ––x Decrement x, then evaluate x Postfix increment (post-increment) ++ x++ Evaluate x, then increment x Postfix decrement (post-decrement) –– x–– Evaluate x, then decrement x for Example : int x = 5 ; int y = ++ x ;     // x is now equal to 6, and 6 is assigned to y int x = 5 ; ...