What is the output of the program?#includeint main(){ extern int a; printf("%d\n", a); return 0;}int a=20; January 26, 2021 Get link Facebook X Pinterest Email Other Apps What is the output of the program?#include<stdio.h>int main(){ extern int a; printf("%d\n", a); return 0;}int a=20;20 Comments
Comments
Post a Comment