☺ als char ausgeben



  • hallo - ich bin zu doof um nen smilly in konsole auszugeben

    google spuckt nur c aus aber ich brauche ne char function

    damals habe ich mal in forum folgendes gesehn

    ...
    #define smilly 0x01

    char player = 'smiily'

    oder so ich weis nicht mehr wie

    - need help

    möchte folgendes machen:

    char player = '☺'
    ...
    int player
    cout<<player;



  • #include <iostream> 
    
    #define smiley 0x1
    
    int main() 
    {
    	const char charSmiley = smiley;
    	const unsigned int intSmiley = smiley;
    
    	std::cout<< charSmiley <<std::endl;
    	std::cout<< ( char ) smiley <<std::endl;
    	std::cout<< ( char ) intSmiley <<std::endl;
    
    	std::cin.get( );
    }
    

    ?



  • void charfunktion_print_smailieh(int schmailieh)
    {
    	if (schmailieh != 1 && schmailieh != 2)
    	{
    		puts("This not schmailieeh!");
    		exit(1);
    	}
    	putchar(schmailieh); // charfunktion ;)
    
    }
    
    int main() 
    {   
    	charfunktion_print_smailieh(1);
    	charfunktion_print_smailieh(2);
    	charfunktion_print_smailieh(3);
    	return 0;
    }
    

    mfg,
    mr smile



  • jo danke war einfach nur

    #define smilly 0x1

    char player = smilly

    👍


Anmelden zum Antworten