struct tag{
auto int x;
static int y;
};main()
{
struct tag s;
s.x=4;
s.y=5;
printf(“%d”,s.x);
}
Answer Posted / prasha patel
4
| Is This Answer Correct ? | 6 Yes | 7 No |
Post New Answer View All Answers
Array is an lvalue or not?
What is the use of gets and puts?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What is a ternary operator in c?
What are the types of functions in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is meant by int main ()?
What is the difference between text and binary i/o?
Why is extern used in c?
Is there sort function in c?
What is function prototype in c with example?
What is an auto keyword in c?
What are the difference between a free-standing and a hosted environment?
Describe dynamic data structure in c programming language?