tizen.moe

tizen.moe

2016-05-24から1日間の記事一覧

備忘録:C言語

とあるコードを読んでて悩んだ箇所がありまして。 1 #include <stdio.h> 2 3 static int testCalc(int a, int b) 4 { 5 int ret = 0; 6 7 ret = a + b; 8 9 return ret; 10 } 11 12 int main() 13 { 14 char a = 0x0f; 15 char b = 0x00; 16 17 char c = (testCalc(a,</stdio.h>…