C/C++中的字串另類連線

zenny_chen發表於2007-10-25
#include <stdio.h>


int main(void)
{
    
const char* s = "Hello"", world!";

    printf(
"Hello""Me""you! ");        // output: HelloMeyou

    
return 0;
}


 

相關文章