| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
anyone know how to clear screen in Xcode for c++ tool project?
on a pc.. it was system("cls"); i've tried system("clear"); but it doesn't work either. also i'm looking for more characters to use.. does any know how i can get triangles and double borders characters so i can us them to draw boxes? thanks your help is much appreciated. oh and if there is another program that can do this properly on a mac, please let me know.. i'm using my powerbook to finish up my c++ class since my pc laptop died. |
|
#2
|
|||
|
|||
|
i've no mac exp but i do this with gcc to produce ascii chars.
Code:
#include<iostream>
main(){
for(int i=0;i<255;i++) cout<<" "<<i<<char(i)<<" ";
}
got no answer about your clear thing, sorry... |
|
#3
|
|||
|
|||
|
thank you! umm but yea i tried it and it didn't give me much .. lol i got alot of slashes and numbers.. yea anyways.. thanks .
|
|
#4
|
|||
|
|||
|
Quote:
I believe that Code:
system("clear");
Code:
#include <stdlib.h> |
![]() |
| Viewing: Dev Articles Community Forums > Programming > C/C++ Help > C++ in Xcode. Clear Screen? extra ASCII characters? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|