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 / karthik
0, 0.00
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
How do you generate random numbers in C?
What is the heap?
What are the types of type qualifiers in c?
What is the basic structure of c?
#include
What is the scope of an external variable in c?
What is difference between array and pointer in c?
Why is c used in embedded systems?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What is the difference between the local variable and global variable in c?
What is this infamous null pointer, anyway?
What are the restrictions of a modulus operator?
Explain how can I manipulate strings of multibyte characters?