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);
}
Post New Answer View All Answers
What is static and auto variables in c?
What does c in a circle mean?
Explain what are the standard predefined macros?
where are auto variables stored? What are the characteristics of an auto variable?
What is c definition?
What is printf () in c?
What is c++ used for today?
What is volatile c?
What is int main () in c?
How many bytes is a struct in c?
What is the symbol indicated the c-preprocessor?
There seem to be a few missing operators ..
How can I recover the file name given an open stream?
How are Structure passing and returning implemented by the complier?
Can I initialize unions?