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
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
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
differentiate built-in functions and user – defined functions.
Explain which function in c can be used to append a string to another string?
What is an arrays?
I have a varargs function which accepts a float parameter?
Why double pointer is used in c?
What is a structural principle?
How does selection sort work in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is modeling?
How can I manipulate strings of multibyte characters?
What is console in c language?
What is hashing in c language?
What is data types?