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
Is null a keyword in c?
Is main a keyword in c?
What is multidimensional arrays
What is the right type to use for boolean values in c?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is bss in c?
Differentiate between full, complete & perfect binary trees.
Explain the binary height balanced tree?
What does double pointer mean in c?
What is the stack in c?
How would you rename a function in C?
How many types of arrays are there in c?
What is scope of variable in c?
How pointer is different from array?
Is struct oop?