30/09/2018, 16:16

Poll: Kiểm tra kiến thức C - 4.05

Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/java-programming-test/61

6.If the size of integer is 4bytes, What will be the output of the program?

#include<stdio.h>

int main()
{
    int arr[] = {12, 13, 14, 15, 16};
    printf("%d, %d, %d
", sizeof(arr), sizeof(*arr), sizeof(arr[0]));
    return 0;
  • A. 10, 2, 4
  • B. 20, 4, 4
  • C. 16, 2, 2
  • D. 20, 2, 2
Bài liên quan
0