Learn and practice your skills with our MCQ question answers to improve your knowledge. MCQs list
Start Practice with MCQsQuizack 10 minutes test will assess your knowledge and give you comprehensive results along feedback.
Start QuizDownload Free Embedded C MCQ questions answers PDF to practice and learn while are offline.
Download PDF
Used by 100s of Jobseekers and students
Focused questions for skill assessment
Premium questions with correct answers
long int exampleVar @ _ _longIX;
long int @ _ _longIX, exampleVar;
long int exampleVar $ _ _longIX;
long int $ _ _longIX, exampleVar;
Answer:
long int exampleVar @ _ _longIX;
Choose the correct output of the following C program.
int main()
{
int i,k;
i=5;
k=abc(i);
printf("%d",k);
return 0;
}
int abc(int a)
{
int b,c,d,e;
b=6;c=9;a=a/2;
d=xyz(b);
e= d+b-(c/d)+1.5;
return(e);
}
int xyz(int w)
{
int p=1;
do
{
p=p*w;
w--;
}
while(w>0);
return(p);
}
675
547
720
634
727
Answer:
727