Forum: C++ May 6th, 2005 |
| Replies: 8 Views: 1,469 well, Thank u very much for trying to help me,
I think I have to learn more a bout using pointers :)
My be next time I'll be better
thanx again :) |
Forum: C++ May 6th, 2005 |
| Replies: 8 Views: 1,469 Thay's it, I'm facing problems with the pointers , bcz I learned it just a week before , but I should use pointers ,I have no choice :) |
Forum: C++ May 6th, 2005 |
| Replies: 8 Views: 1,469 I changed the sort by name like this
char s[10][100];
if ( x == 3 ){
for ( i=0 ; i <3 ; i++ ){
char s1=*s[i];
char s2=*s[i+1];
y=strcmp ( s[i] , s[i+1]);
... |
Forum: C++ May 6th, 2005 |
| Replies: 8 Views: 1,469 My problem with searching by employee name,
when I enter a name to search for ,I face a debug,
also if I entered
taylar
john
sara
array s should include:
s[0].....taylar
s[1].....john |
Forum: C++ May 5th, 2005 |
| Replies: 8 Views: 1,469 Hi,
This program supposed to ask the user to enter the names and the ID numbers and
the number of children the employee have,
the search shoud work like this
taylar 845 3
john 123 2 |