Forum: C++ Jun 1st, 2009 |
| Replies: 17 Views: 741 If you want to multiply any number by 100
Try this :-
int result = 0;
int x;
cout << "Enter Any Number " << endl;
cin>>x;
for ( int i = 1 ; i <= (100 /2) ; i++)
{ |
Forum: C++ May 30th, 2009 |
| Replies: 5 Views: 738 I have an idea:-
1- make a structure with the following member.
struct Record{
char name [20];
};
this structure is for using fixed length record |