Programming Forums

Programming Forums (http://www.programmingforums.org/forumindex.php)
-   C++ (http://www.programmingforums.org/forum15.html)
-   -   shortcut (http://www.programmingforums.org/showthread.php?t=11794)

sayu Nov 3rd, 2006 7:30 AM

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

DaWei Nov 3rd, 2006 7:40 AM

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.

Iftikhar Nov 3rd, 2006 2:50 PM

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