cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Make table of values
Make table of values
Nov 16, 2015 at 3:01am UTC
kdesai23
(2)
Decimal Binary Hexadecimal Char
33 00100001 0x21 !
34 00100010 0x22 "
35 00100011 0x23 #
I'm trying to do this from 0-127, I have the code to make it go from decimal to binary and hexadecimal but not to output from 0-127
Nov 16, 2015 at 4:21pm UTC
tcs
(519)
F.e. use a for-loop.
1
2
3
4
for
(
unsigned
int
i = 0; i <= 127; i++) {
// Call your function with `i´ as argument here
}
Topic archived. No new replies allowed.