u

VB Projects

Get all Visual Basic Projects here..

Friday, 14 September 2012

C++ Program to define a function and incorporate the array of structures to input and store any 30 records

C++ Program to define a function and incorporate the array of structures to input and store any 30 records Display the following using functions incorporated through structure definition viz. display of all entered records,sort the records according to the marks in descending order and display of sorted records. #include<iostream.h> #include<conio.h> #include<string.h> #include<stdio.h> struct ward { char name[20]; float marks; } stud[5]; void display(); void sort(); void dispsort(); main() { clrscr(); //...

C++ Program to sort the given strings in Ascending order

C++ Program to sort the given strings in Ascending order #include <stdio.h>#include <conio.h>#include <string.h> void main() {clrscr();char name[10][20],temp[10][20]; int i,j,n; printf ("\nENTER THE NUMBER OF NAMES TO BE ASCENDED : "); scanf ("%d",&n); for (i=0;i<n;i++) { printf ("ENTER THE %d NAME : ",i+1); scanf ("%s",name[i]); } printf ("\n The ascending order of the names is : \n "); for (i=0;i<n;i++) { for (j=i+1;j<n;j++) { if (strcmp(name[i],name[j])>0) { strcpy (temp[i],name[i]);strcpy (name[i],name[j]);strcpy...

C++ Program to input a string and a character. Print the frequency of the character within the string

C++ Program to input a string and a character. Print the frequency of the character within the string  #include<iostream.h> #include<conio.h> #include<string.h> #include<process.h> #include<stdio.h> main() { clrscr(); char name[40],input; int l=0,count=0; cout<<"Enter any word "<<endl; gets(name); cout<<endl<<"Enter the character to print the frequency"; cin>>input; l = strlen(name); cout<<endl; for (int a=0;a<l;a++) { if (name[a]==input) count = count + 1; } cout<<endl<<"The...

C++ Program to input any string and print the number of 'the'

C++ Program to input any string and print the number of 'the'  #include<iostream.h>#include<conio.h>#include<stdio.h>#include<string.h>main(){clrscr();char name[50];int l=0,c=0;cout<<"Enter any string "<<endl;gets(name);l = strlen(name);cout<<endl;for(int i=0;i<=l;i++){if ((name[i]=='t') && (name[i+1]=='h') && ((name[i+2])=='e'))c=c+1;}cout<<endl;cout<<"total the is "<<c;getch();return 0...

C++ Program to input any ten numbers and print them in ascending order

C++ Program to input any ten numbers and print them in ascending order  #include<iostream.h> #include<conio.h> main() { int number[10],a,b,c,d; clrscr(); // clear the screen cout<<"Enter the elements of the array"<<endl; for(int i=0;i<10;i++) { cout<<"Enter number for cell "<<i<<endl; cin>>number[i]; } cout<<endl<<"Thank You ! The data entry is over"<<endl; cout<<"Press any key to continue"; getch(); clrscr(); // sorting of data for(int j=0;j<9;j++) { for(int...

C++ Program using function allows the user to enter a number and than rounds it off,correct to the nearest integer

C++ Program using function allows the user to enter a number and than rounds it off,correct to the nearest integer #include <iostream.h>#include <conio.h>             //HEADER FILESvoid main()                  // MAIN FUNCTION    {     clrscr();                // CLEAR THE SCREEN    ...

C++ Program to Rotates a word

C++ Program to Rotates a word This program prints all the rotation of a word. Say if the input word is "space", then it prints >>space >>paces >>acesp >>cespa >>espac  #include <stdio.h> #include <string.h> #include <conio.h> void main() { char w[50],buf[50],temp[50],buf2[10]; clrscr(); printf("Enter a word to see it's rotation :"); fflush(stdin); gets(w); strcpy(temp,w); printf("All the rotation of the word \"%s\" are :",w); for(int i=0;i<strlen(w);i++) { strcpy(buf,strnset(w,' ',i));...

C++ Program to input any string and print the number of words

C++ Program to input any string and print the number of words  #include<iostream.h>#include<conio.h>#include<stdio.h>#include<string.h>main(){char a,name[50];int l=0,c=0,word=0;cout<<"Enter any string "<<endl;gets(name);l = strlen(name);cout<<endl;for(int i=0;i<l;i++){a=name[i];if (a==' ') c = c + 1;}word = c + 1;cout<<"The total number of words in the string is "<<word;cout<<endl;getch();return 0...

C++ Program to delete the first common word in two strings and display the strings without the first common words

C++ Program to delete  the first common word in two strings and display the strings without the first common words #include <conio.h> #include <stdio.h> #include <iostream.h> char string1[25] = {'\0'}; char string2[25] = {'\0'}; char temp[25] = {'\0'}; int start = -1; int end = -1; int start2 = 0; int end2 = 0; /*GET THE INPUT FOR THE STRINGS*/ void get_input() {     cout << "Enter the first string : ";     gets(string1);     cout << "Enter the second string...

C++ Program to implement a Recursive Function

C++ Program to implement a Recursive Function  #include <iostream.h>#include <string.h>#include <stdlib.h>#include <conio.h>void recurfunc(int start,int stop,char* buff);void main()    {   clrscr();    cout << "enter how many times to loop: ";    char buff[100];    cin >> buff;    int num;    num = atoi(buff);    if(num >= 1)        {      ...

C++ Program to Print out a diamond of any size less than 12

C++ Program to  Print out a diamond of any size less than 12 #include <iostream.h> #include <conio.h> const int Center = 20; void printnc(char c, int n){     for (int lcv=0; lcv < n; lcv++)     {     cout << c;     } } // Print out a triangle of size n void printTriangle(int n){    for (int i=0; i < n; i++){        printnc(' ', Center - i -1);        printnc('X', 2*i+1);       ...

C++ Program to print out a checkered board of size n

C++ Program to print out a checkered board of size n  #include <iostream.h>#include <conio.h>const int cellSize = 4;void printnc(char c, int n){   for(int k = 0; k<n; ++k)      cout << c;}void printBWcells(void){   printnc('.', cellSize);   printnc(' ', cellSize);}void printWBcells(void){   printnc(' ', cellSize);   printnc('.', cellSize);}void printBoard(int n){   printnc('*', 2+2*n*cellSize);   cout << endl;  ...

C++ Program to play a puzzle

C++ Program to play a puzzle #include<graphics.h>#include<iostream.h>#include<conio.h>#include<dos.h>#include<string.h>#include<stdio.h>getkey1(){union REGS i,o;while(!kbhit());i.h.ah=0;int86(22,&i,&o);return(o.h.ah);}void main2(){int gd=DETECT,gm,i,j,n=0,m,q=0,v=0,k;char *a[16]={"9","3","2","4","7","6","5","8","1","11" ,"13","12","10","14"," " ,"15"},*b[16]={"1","2","3","4","5","6","7","8","9","10" ,"11","12","13","14","15" ," "},*t;initgraph(&gd,&gm,"c:\\tc\\bgi");setcolor(3);outtextxy(260,100,"...

C++ Program for converting an int variable to floating point

C++ Program for converting an int variable to floating point #include <iostream.h>#include <stdlib.h>      //defines EXIT_SUCCESS etc#include <conio.h>int main( void ){  // declare variables here    int x,y;    float quotient;    cout <<"enter an integer x="; cin >> x;    cout <<"enter an integer y="; cin >> y;    quotient= x / y;    cout<< "x / y is " << quotient <<...

C++ Program to print the product of two matrices

C++ Program to print the product of two matrices #include<iostream.h>#include<conio.h>main(){clrscr();int i,j,a[3][4],b[4][3],c[3][3];//Creation of matrix A[3][4]cout<<"Enter elements of array A"<<endl;for(i=0;i<3;i++){for(j=0;j<4;j++){cin>>a[i][j];}}cout<<"Enter elements of array B"<<endl;for(i=0;i<4;i++){for(j=0;j<3;j++){cin>>b[i][j];}}// storing product in array Cfor (i=0;i<3;i++){for (j=0;j<3;j++){c[i][j]=0;for(int k=0;k<4;k++){c[i][j]=a[i][k]*b[k][j]+c[i][j];}}}cout<<endl<<"The...

C++ Program to assign string in a double dimensional array and display the contents

C++ Program to assign string in a double dimensional array and display the contents  #include <iostream.h>#include <conio.h>enum {NAMESIZE=20};// Print out the first n names of avoid printNames(char a[][NAMESIZE], int n){    for (int row=0; row<n; row++)    {        for (int clmn=0; a[row][clmn] != '\0'; clmn++)        {            cout << a[row][clmn];      ...

C++ program to calculates the value of a polynomial

C++ program to calculates the value of a polynomial  #include <iostream.h> #include <conio.h> #include <process.h> const int MAXDEGREE = 10;    // define constant void main() {    float x, y;    float coefficients[MAXDEGREE+1];  // coefficients of a polynomial    float x_powers[MAXDEGREE+1];      // powers of x    int degree, i;    cout << "\nCalculation of polynomial";    cout << "\nEnter degree ";   ...

C++ Program for Pig Latin Converter

C++ Program for  Pig Latin Converter #include <iostream.h>#include <string.h>#include <stdio.h>#include <conio.h>int makePhrase(char * word, char phrase[][20]);void main(){clrscr();   char word[30] = {'\0'};   char phrase[20][20];   char convert[30] = {'\0'};   char temp[10] = {'\0'};   int counter =0;   int check = 0;   int firstvowel = 0;   int i;   int numcons;   cout<<"Please enter a word or phrase up to...

C++ Program to input any string and print the number of spaces stored within the string at prime positions

C++ Program to input any string and print the number of spaces stored within the string at prime positions  #include<iostream.h>#include<conio.h>#include<stdio.h>#include<string.h>main(){char a,name[50];int f=0, l=0,c=0,k=0;cout<<"Enter any string "<<endl;gets(name);l = strlen(name);cout<<"The length of the string is "<<l;cout<<endl;for(int i=0;i<l;i++){a=name[i];if (a==' ')// checking if i is primek=i+1;for(int l=1;l<=k;l++){if (k%l==0)f=f+1;}if (f==2)c = c + 1;f=0;}cout<<endl<<"The...

C++ Program to display a Triangle of numbers called the Pascal's Triangle

C++ Program to  display a Triangle of numbers called the Pascal's Triangle, when provided with  the number of rows  # include <stdio.h>#include<conio.h>void main () { int pal[50][50]; int i,j,k,n; printf("ENTER THE NUMBER OF ROWS : "); scanf("%d",&n); for (i=0;i<n;i++) { pal[i][0]=1; pal[i][i]=1; for (j=1;j<i;j++) { pal[i][j]=pal[i-1][j-1]+pal[i-1][j]; } for (j=1;j<=(n-(i+1));j++) { printf (" "); } for (k=0;k<=i;k++) { printf(" %2d ",pal[i][k]); } printf("\n"); } getch();...

C++ Program to display all prime fibonacci series within the range of 1 to 10000

C++ Program to display all prime fibonacci series within the range of 1 to 10000 #include<conio.h> #include<iostream.h> #include<stdio.h> int isprime(int); main() { clrscr(); cout<<"All prime fibonacci series in the range of 1 to 10000 are"<<endl; int r; int a=1,b=2,c=0; r=isprime(a); if (r==1) cout<<a<<" "; r=isprime(b); if (r==1) cout<<b<<" "; while (c<=10000) { c=a+b; r=isprime(c); if ((r==1) && (c<=10000)) cout<<c<<" "; a=b; b=c; } getch(); } int isprime(int...

C++ Program to Conversion program using Fucntions

C++ Program to Conversion program using Fucntions #include <iostream.h> #include <stdlib.h> char choosestd; float inch1; float inch2; float foot; float yard; float mile; float millimeter; float centimeter; float meter1; float meter2; float kilometer; int first; float firstfunction(); float secondfunction(); float thirdfunction(); float fourthfunction(); float fifthfunction(); float sixthfunction(); float seventhfunction(); float eigthfunction(); float ninthfunction(); float tenthfunction(); int main() {      ...

Thursday, 13 September 2012

C++ Program to design a Five Function Calculator using Switch/Case

C++ Program to design a Five Function Calculator using Switch/Case  #include <iostream.h> #include <conio.h> int main () { main:     int a,b,c,d,ans;     double v1, v2, ans2;     char yn;     while (yn != 'n')     {     clrscr();     cout<<"\n\n\n\t-_-_-_-_-_-_-_-_-  Five Function Calculator   _-_-_-_-_-_-_-_-_\n\n";     cout<<"Select the operation .\n";     cout<<"1....

c++ Program to perform Magic Courtesy : ENRICO X

C++ Program to perform Magic Courtesy : ENRICO X THE MAGICIAN  :  Enrico  Lorenzo #include <stdlib.h> #include <stdio.h> #include <conio.h> #include <dos.h> main() { clrscr(); _setcursortype(_NOCURSOR); int x, x2=6, lo, di; int x3=5, x4=3, x5=4; char cho, col, col2, col3; randomize(); clrscr(); sleep(2); textcolor(15); gotoxy(44,13);cprintf("X"); delay(100); textcolor(0); gotoxy(44,13);cprintf(" "); textcolor(15); gotoxy(42,13);cprintf("O"); delay(100); textcolor(0); gotoxy(42,13);cprintf(" "); textcolor(15); gotoxy(41,13);cprintf("C"); delay(100); textcolor(0); gotoxy(41,13);cprintf("...

Page 1 of 2512345Next

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More