C Programming and Technical

What is difference between Structure and Unions?

Read Solution (Total 0)

C Other Question

Write down the equivalent pointer expression for
referring the same element a[i][j][k][l]?
What will be the output of the program?
#include

int main()
{
int y=128;
const int x=y;
printf("%dn", x);
return 0;
}
Options
1) 128
2) Garbage value
3) Error
4) 0