Ask your own question, for FREE!
Computer Science 52 Online
OpenStudy (anonymous):

i need help with this problem writing it in C++: Characters for the ASCII codes, Write a program that uses a loop to display the characters for the ASCII codes 0 through 127. Display 16 characters each line.

OpenStudy (anonymous):

You need either an int or char variable that goes from 0 to 127 and print it as a %c. Use a for, something like: for(i=0; i <= 127; i++){ if(i % 16 == 0){ //print the character and a \n i%16 will make it so everytime you reach 16, 32, 48, etc. you will ujmp a line. } else { //just print the character } } the variable i will go through all the values from 0 to 127 in this for.

OpenStudy (anonymous):

I think it's a little cleaner to always print the character, then if i%16==0 print just a newline.

OpenStudy (rsmith6559):

One thing, the ASCII values below 32 are mostly control "characters" printing them can give some REAL interesting results.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Obed55: I need serious relationship?
2 minutes ago 1 Reply 0 Medals
WalmartBag: can someone pls give me a proxy
2 minutes ago 5 Replies 0 Medals
Breathless: womp
3 hours ago 0 Replies 0 Medals
Breathless: yo who wanna match pfp?
3 hours ago 11 Replies 1 Medal
Ylynnaa: This was long time ago lmk if u fw itud83dude1d
6 hours ago 17 Replies 2 Medals
abound: Wow question cove really fell off
8 hours ago 6 Replies 1 Medal
ayden09: chat i love black pink hehe i like jones to
8 hours ago 20 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!