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

Page 1 of 2512345Next

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More