main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / sreepal
-255
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is dynamic dispatch in c++?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What does *p++ do? What does it point to?
How to write a code for reverse of string without using string functions?
How are structure passing and returning implemented?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is c variable?
Why cant I open a file by its explicit path?
What is define directive?
Difference between linking and loading?
What is sizeof return in c?
What is the difference between c &c++?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?