![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Nov 2006
Posts: 10
Rep Power: 0
![]() |
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 |
|
|
|
|
|
#2 |
|
Resident Grouch
![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jun 2005
Posts: 6,453
Rep Power: 10
![]() |
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.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code. Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers |
|
|
|
|
|
#3 |
|
Programmer
|
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
__________________
Iftikhar Ahmed Khan For doing an experiment on programmer's mood please visit http://uxisfyp1.brunel.ac.uk/cspgiak |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Borland C++5.5 compiler - shortcut ? | Vagabond | C++ | 8 | Mar 20th, 2006 3:31 PM |
| XML trouble | tayspen | C# | 12 | Dec 17th, 2005 6:37 PM |
| i need an application to create a shortcut to itself | killcity44 | Visual Basic | 1 | Jul 8th, 2005 7:33 PM |