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 would happen to X in this expression: X += 15; (assuming the value of X is 5)
Can we increase size of array in c?
What is a floating point in c?
pierrot's divisor program using c or c++ code
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is type qualifiers?
What is a shell structure examples?
Why should I prototype a function?
Why is #define used?
When was c language developed?
What is n in c?
What is p in text message?
What is pointer to pointer in c language?
What is the explanation for cyclic nature of data types in c?