#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
char Str1[] = "Hello CYH"; // Str1[0] = 'H'; ... Str1[5] = ' '
printf("1. ---Str1=%s---\r\n", Str1 );
Str1[5] = '\0';//或用Str1[5] = 0 ;用數值的0;
printf("2. ---Str1=%s---\r\n", Str1 );
if( 1 ) // (1) = (true)1是真(非0即真)
printf("1 is true\n" );
if( 0 ) // (0) = (false)0是假即不成立,即不做(不會被執行)
printf("0 is true\n" ); // X
// ---- 'A' = 65 ---------------------
printf("65 = %c\n", 65 ); // 'A'以字元型態印出來
printf("0x41 = %c\n", 0x41 ); // 'A' 0x41也是字元A
printf("0101 = %c\n", 0101 ); // 'A' 64 8 1用八進位也是A
system( "PAUSE" );
return 0;
}
沒有留言:
張貼留言