WHAT'S NEW?
Loading...
0

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...

0

Code for pascal's triangle

 //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--)       ...

0

Code for sum of complex numbers using structure

#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...

0

Programe to delete duplicate elements from a vector

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];       ...

0

Password validation

//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,...

0

Bubble sorting

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...

0

Code for printing report card of a student

#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;    ...

0

Code for printing tomorrow's date using structure

//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...

0

Code for the game tic-tac -toe

// 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,...

1

Different operations with 2-D matrix

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

Pages (3)123 Next