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
Does sprintf put null character?
What are pointers really good for, anyway?
How many data structures are there in c?
Why is structure important for a child?
What math functions are available for integers? For floating point?
What is cohesion and coupling in c?
When is a void pointer used?
What is the use of a ‘ ’ character?
What do mean by network ?
How many bytes are occupied by near, far and huge pointers (dos)?
Did c have any year 2000 problems?
What does 3 mean in texting?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
How many types of operator or there in c?
Explain the difference between ++u and u++?