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 are extern variables in c?
What is hash table in c?
What is calloc() function?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
what will be maximum number of comparisons when number of elements are given?
How can I call fortran?
What is the easiest sorting method to use?
How can I remove the trailing spaces from a string?
Can we declare function inside main?
How do you sort filenames in a directory?
what are the 10 different models of writing an addition program in C language?
How can you tell whether a program was compiled using c versus c++?
What is the importance of c in your views?
What is the difference between pure virtual function and virtual function?
Can we use any name in place of argv and argc as command line arguments?