![]() |
shortcut
Hello
can anybody say the keyboard shortcut for the symbol " █ " -full block so that I can type this in C++ editor window as well as show it in the user screen or output screen |
That's an extended ASCII code. You might not get it if the code page/charset/locale of a system isn't set to produce it. That said, try holding down the ALT key while you type 219 on the number pad.
|
Here is also a sample code thru which you can look 255 ASCII chracter codes
[code] void main() { int i; for (i=0;i<255;i++) printf("[%c == %d]",i,i); } [\code] Probably output will not be in a proper order which you can do by using formating functions |
| All times are GMT -5. The time now is 1:00 AM. |
Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC