what would be the output of the follwing
struct st
{
char name[20];
int i;
float f;
};
main()
{
struct st emp = {"forum"};
printf("%d %f",emp.i,emp.f);
}
Answer Posted / ajay
0 0.000000
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is variable in c example?
Can include files be nested? How many levels deep can include files be nested?
What is a volatile keyword in c?
What is difference between static and global variable in c?
What is the function of multilevel pointer in c?
What is a pointer in c plus plus?
Explain what standard functions are available to manipulate strings?
What is a macro, and explain how do you use it?
Explain how can you determine the size of an allocated portion of memory?
What does node * mean?
How many levels of pointers can you have?
Explain data types & how many data types supported by c?
Can you write the algorithm for Queue?
Why is c so powerful?
What is the difference between pure virtual function and virtual function?