Single Choice
Not Set
QWhat will be the output of the following C code?
#include
struct temp
{
int a;
} s;
void func(struct temp s)
{
s.a = 10;
printf("%d\t", s.a);
}
main()
{
func(s);
printf("%d\t", s.a);
}
ID: #2634
Structure in C Language
3,484 views
Question Info
#2634Q ID
Not SetDifficulty
Structure in C LanguageTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
10 0
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic