Kavya TKnowledge Contributor
What will be the output of the program? #include<stdio.h> int X=40; int main() { int X=20; printf("%d\n", X); return 0; }
What will be the output of the program? #include<stdio.h> int X=40; int main() { int X=20; printf("%d\n", X); return 0; }
include
int main()
{
int x;
x=(10,20,30);
printf(“%d”, x);
return 0;
}