Posts

setups

Image
click to Download IDM DOWNLOAD CLICK TO DOWNLOAD SUBLINE CLICK TO DOWNLOAD VISUAL STDIO FULL PACK CLICK TO DOWNLOAD MS Logo click to download Mathlab 2013 Download

C++ programs Download

Image
For  C++ programs  click here https://docs.google.com/uc?export_downloads=1yzwzkTX9xj-NUI5tn-RzqfL8eEcgUMcG

Object-oriented programming (OOP)

Image

PROJECTS

Bank management System //Preprossor #include<iostream> #include <cstdlib> //#include<graphics.h> #include<Windows.h> #include<conio.h> #include<iomanip> //#include"MMSystem.h"  #include<string> #include<fstream> #include <ctime> //phototype of function int menu(); int login(); int New_Account(); int LIST(); int exit(); int DEPOSIT_AMOUNT(); int APPLY_FOR_LOAN(); int WITHDRAW_AMOUNT(); int BALANCE_CHECK(); int SUBMITTED_LOAN_MONEY(); int MODIFY_AN_ACCOUNT(); int CLOSE_AN_ACCOUNT(); //Global variable using namespace std; int s[10],money[10],k,i=0,PSS[20],loan[80],q=1; char ch[10],j; string f[10],Gender[100]; //starting main function int main()  { //"C:\\tc\\bgi"; // int initwindow((688,588)); //   int readimagefile(("a.BMP",0,0,688,388)); // getche(); //PlaySound(TEXT ("Music.WAV"), NULL,SND_SYNC); ...

Assignment

please change karna Q1 #include<iostream> using namespace std; int main() { int a[5],b[5],s[5],k; cout<<"Enter an elemenntL"; for(k=0;k<5;k++) cin>>a[k]; cout<<"Enter an elemenntL"; for(k=0;k<5;k++) cin>>b[k]; for(k=0;k<5;k++) s[k]=a[k]+b[k]; cout<<"M1"; for(k=0;k<5;k++) cout<<a[k]<<" "; cout<<"M2"; for(k=0;k<5;k++) cout<<b[k]<<" "; cout<<"Sum"; for(k=0;k<5;k++) cout<<s[k]<<" "; } q2 #include<iostream> using namespace std; int main() { int a[5],k; cout<<"Enter an elemenntL"; for(k=0;k<5;k++) { cin>>a[k]; } for(k=0;k<5;k++) { cout<<a[k]<<" "; } } q3 #include<iostream> using namespace std; int main() { int a[3][3],b[3][3],i,j; cout<<"Enter an el...