Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Misc | Question 8

Improve Article
Save Article
Like Article
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article
Like Article

Output of Below C Code? Assume that int takes 4 bytes.




#include<stdio.h>
int x = 5;
int main()
{
    int arr[x];
    static int x = 0;
    x = sizeof(arr);
    printf("%d", x<<2);
    return 0;
}


Thanks to Gokul Kumar for contributing this question.
(A) Compiler error in line “static int x = 0”
(B) 7
(C) 80
(D) 20


Answer: (C)

Explanation: Size of gives size of arr * int in bytes = 20
Left shift two times gives you 80.

Quiz of this Question

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!