Class
Using class for finding the biggest number in an array #include<iostream.h> #include<conio.h> class array { int a[100],size; public: void big(); void enter(); }; void array::enter() { cout<<"Enter the...
Professional Coding
Search form is empty!
Using class for finding the biggest number in an array #include<iostream.h> #include<conio.h> class array { int a[100],size; public: void big(); void enter(); }; void array::enter() { cout<<"Enter the...
//code for pascal's triangle #include<conio.h>#include<iostream.h>int main(){ clrscr(); int n,i,j,c,k,place; cout<<"Enter the no of rows "<<endl; cin>>n; cout<<" \n\nPASCAL TRIANGLE"<<endl; cout<<"\n\n"; place=n; for(i=0;i<n;i++) { c=1; for(k=place;k>=0;k--) ...
#include<iostream.h>struct complex{ int x, y;};void main(){ complex c1,c2,sum; complex add (complex, complex); //function prototype with returning value and arugment as structure cout<<"\n Enter the real part of the...
this code is for deleting the number which are in the vector more than once . #include<iostream.h> void main(){ int i, j, k, num, ans=0; float vec[50]; ...
//password #include <iostream> #include<string.h> #include<conio.h> #include<stdio.h> using namespace std; struct password { char name[100], passwords[100], userid[100]; }real, login; int main() { int i, id=1, pas=1, conf,...
Bubble sorting is nothing but sorting n numbers in ascending order or descending order Code #include<iostream.h> #include<conio.h> void main() { clrscr(); int...
#include <iostream.h> #include <stdio.h> #include <process.h> struct students { int rollno; char name[30]; char clas[30]; int maths; int cs; int phy; ...
//With this example let's see how to make and use a structure #include<iostream.h> struct date { int day, month, year; }t1, t2; //t1=>today's date t2=>tomorrow's date void...
// tic-tac-toe #include<iostream.h> #include<process.h> #include<conio.h> int continuee(void); void main() { char xox[10][10], choice; int m[10][10], i, j, count, boxnum, a=0,flag1=0; int print(char[10][10], int[10][10], char,...
v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} Normal 0 false false false false EN-US X-NONE X-NONE
Using class for finding the biggest number in an array #include<iostream.h> #include<conio.h> class array { int a[100],...
Professional Coding © 2015. All Rights Reserved.
Blogger Templates Created by ThemeXpose