struct tag{
auto int x;
static int y;
};main()
{
struct tag s;
s.x=4;
s.y=5;
printf(“%d”,s.x);
}
Answers were Sorted based on User's Feedback
Answer / vishal soni
There is errors......
Because auto can't write in structure scope.... It is in functions
| Is This Answer Correct ? | 13 Yes | 3 No |
is assignment operator is arithmatic or not
What is calloc()?
how the compiler treats any volatile variable?Explain with example.
How can I access memory located at a certain address?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
what is ANSI and ISO
What is pragma in c?
c program to subtract between two numbers without using '-' sign and subtract function.
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
? ???Mirror Mirror on the wall????????
What is the purpose of the preprocessor directive error?
what is the definition of storage classes?