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
What is a double c?
What are the benefits of c language?
Describe dynamic data structure in c programming language?
What is a global variable in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is #line used for?
Explain how can I prevent another program from modifying part of a file that I am modifying?
differentiate built-in functions and user ā defined functions.
Explain what are reserved words?
Why do we use int main?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
how do you execute a c program in unix.
What is echo in c programming?
What is the use of volatile?
Here is a neat trick for checking whether two strings are equal