Please support our C++ advertiser: Programming Forums
![]() |
•
•
Join Date: Nov 2003
Posts: 1
Reputation:
Rep Power: 0
Solved Threads: 0
Hello all, I will start off by saying Im in the dark with some aspects of C++, in an intro computer course at college. My question is about how to use char commands for when I have multiple users using the same segment of C++.
ex.
3 users are asked to enter their height etc..... Im not sure how to go about the it for 3, 1 user is easy and I have no problem.
Any thoughts or how to's would be appreciated
Thanks
Pete
ex.
3 users are asked to enter their height etc..... Im not sure how to go about the it for 3, 1 user is easy and I have no problem.
Any thoughts or how to's would be appreciated
Thanks
Pete
•
•
Join Date: Nov 2003
Posts: 4
Reputation:
Rep Power: 0
Solved Threads: 0
use an array for your place holder. try doing it like this:
char height[] = new char[3];
this tells char that you are making an array. now, to access this you would do something like this, say to output in the dos-type command prompt of most beggining c++ classes
cout << "Height of 1 is: " << height[0];
the last space in the array is always NULL or \0. they are the same thing. now to just go through the array and print all of them you would do this:
for(i = 0; i < 3; i++){
cout << "Height of " << i << " is: " << height[i];
}
this would print everything in the array except the last byte which is NULL or \0. later one you will get to dynamic arrays which will be set to \0 or NULL before you start using them. But that is beside the point.
char height[] = new char[3];
this tells char that you are making an array. now, to access this you would do something like this, say to output in the dos-type command prompt of most beggining c++ classes
cout << "Height of 1 is: " << height[0];
the last space in the array is always NULL or \0. they are the same thing. now to just go through the array and print all of them you would do this:
for(i = 0; i < 3; i++){
cout << "Height of " << i << " is: " << height[i];
}
this would print everything in the array except the last byte which is NULL or \0. later one you will get to dynamic arrays which will be set to \0 or NULL before you start using them. But that is beside the point.
•
•
Join Date: Sep 2003
Posts: 22
Reputation:
Rep Power: 6
Solved Threads: 0
What do you mean 3 users using your program? You're only going to have 1 user to your program, unless it's internet based.
If ya' mean 3 different inputs to teh program:
Change #define users 3 to #define users x, where x is the number of users your want.
Or something...
If ya' mean 3 different inputs to teh program:
#include <stdio.h>
#define users 3
int main(void) {
printf("Input %d heights:",users);
int loop = 0;
double temp[users];
while (loop < users) {
scanf("%f",&temp[loop]);
loop++;
}
return 0;
}Change #define users 3 to #define users x, where x is the number of users your want.
Or something...
Oh no... a While Loop. Run!
Assistant Manager, Regional Pharmacy Information Systems
TLC Services Website (Under Construction)
Updated : ASP.Net Login Code
TLC Services Website (Under Construction)
Updated : ASP.Net Login Code
![]() |
Similar Threads
Other Threads in the C++ Forum
- How to extract a substring from a char* (C++)
- need help in animal game guessing (C)
- Read and write system calls <C programming> (C)
- Seg Fault ~ Linked List Delete (C)
- leap year calculation (ASP)
- Problem installing new SATA hard drive (Storage)
- counting then deleting multiples!! (C++)
- phpMyAdmin config problem (MySQL)
Other Threads in the C++ Forum
- Previous Thread: The difference between functions and templates?
- Next Thread: Big Game need progrmmers
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)





Linear Mode