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 bubble sort technique in c?
Why string is used in c?
Explain what is wrong with this statement? Myname = ?robin?;
Which is the best website to learn c programming?
What is conio h in c?
Is there a way to jump out of a function or functions?
What is the difference between arrays and pointers?
What do you mean by command line argument?
Explain what are header files and explain what are its uses in c programming?
How do I swap bytes?
write a c program in such a way that if we enter the today date the output should be next day's date.
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Can you explain the four storage classes in C?
What are the loops in c?
Why can’t constant values be used to define an array’s initial size?