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
What is the usage of the pointer in c?
What does c in a circle mean?
Explain how can I make sure that my program is the only one accessing a file?
Why do we use null pointer?
What is c programming structure?
Explain what is output redirection?
What do you mean by a sequential access file?
What is a union?
Is return a keyword in c?
Disadvantages of C language.
Why c is called procedure oriented language?
What is const keyword in c?
What is the difference between #include
code for replace tabs with equivalent number of blanks
What is the purpose of ftell?