main()
{int a=200*200/100;
printf("%d",a);
}

Answer Posted / dally

200*200/100

here both *,% contained same priority and also left->right
shift so the excusion will start from left->right so answer is
400.

Is This Answer Correct ?    4 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of define in c?

696


Write a simple code fragment that will check if a number is positive or negative.

797


Why do we use return in c?

655


What is the method to save data in stack data structure type?

716


Explain bit masking in c?

750






What is an operator?

755


Why n++ execute faster than n+1 ?

2080


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

711


What is the difference between pure virtual function and virtual function?

746


What is the purpose of & in scanf?

701


Write a program to print factorial of given number using recursion?

706


Explain what is gets() function?

718


How will you delete a node in DLL?

765


What is static memory allocation? Explain

713


What is uint8 in c?

756