Explanation of code
Closed
dev
-
Updated on Apr 4, 2018 at 05:15 PM
BunoCS Posts 15505 Registration date Monday July 11, 2005 Status Moderator Last seen February 5, 2025 - Apr 4, 2018 at 10:56 AM
BunoCS Posts 15505 Registration date Monday July 11, 2005 Status Moderator Last seen February 5, 2025 - Apr 4, 2018 at 10:56 AM
Hello,
while(key!=27)
{
while(!kbhit()){
putimage(l,t,ball,XOR_PUT);
delay(5);
putimage(l,t,ball,XOR_PUT);
can you explain the above lines of code
while(key!=27)
{
while(!kbhit()){
putimage(l,t,ball,XOR_PUT);
delay(5);
putimage(l,t,ball,XOR_PUT);
can you explain the above lines of code
Related:
- Explanation of code
- Battery reset code - Guide
- Samsung volume increase code - Guide
- Cs 1.6 code - Guide
- Nokia factory reset code forgot - Guide
- How to get whatsapp verification code online - Guide
1 response
BunoCS
Posts
15505
Registration date
Monday July 11, 2005
Status
Moderator
Last seen
February 5, 2025
1,534
Apr 4, 2018 at 10:56 AM
Apr 4, 2018 at 10:56 AM
Hello,
What is the programming language?
What can I say is:
while (user has not hit the Escape key) {
while (user has not hit any key) {
put image somewhere
wait 5 (milli?)seconds
put image somewhere
}
}
What is the programming language?
What can I say is:
while (user has not hit the Escape key) {
while (user has not hit any key) {
put image somewhere
wait 5 (milli?)seconds
put image somewhere
}
}