GE筆試C語言部分試題

才智咖 人氣:1.33W

1. typedef int (*func_p)(int)
  func_p p
  p代表什麼意思?
(*a[10])(int) a代表什麼意思??
str[]="GE";
  char *str2 = str;
  sizeof(str)=? sizeof(str2)=?
4.有關malloc的程式判定,具體的給忘了,就是看一下字串空間的`分配
5.要害字volatile的含義,在程式設計過程中的應用?
t int *p1;
 int const *p2;
 int *const p3;
a = -1;
 unsigned int b = 2;
 那麼a b>a?為什麼?a b>b?為什麼?

GE筆試C語言部分試題