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
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What are different types of operators?
can any one tel me wt is the question pattern for NIC exam
What is typedef struct in c?
What are the types of operators in c?
Differentiate between full, complete & perfect binary trees.
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is the easiest sorting method to use?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What are structure types in C?
What is far pointer in c?
Explain how do you generate random numbers in c?
Explain what are linked list?
What is meant by type casting?
Explain the advantages and disadvantages of macros.