answersLogoWhite

0

What is the result of 162 in C language?

Updated: 8/16/2019
User Avatar

Wiki User

15y ago

Best Answer

162

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the result of 162 in C language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the result of 5 slash 4 in c language?

1


Why c in and c out used in c?

In the programming language C++, cin is used to input the variable and cout is used to print a certain message or result.


What is the Difference between C and C languages?

C languages are often based originally on the C language but no longer adhere to it's tenets: often they supersede the original ANSI-92 C language. C++, Objective C, C-, and C# are often used derivatives of the C language. In almost all cases, plain C language can be used with a C language derivative and you get the same result as if you ran it through a plain old C compiler; but the C languages compilers have extra function and procedures available for the programmer.


Is 486 divisible by 3?

Yes, the result is 162.


What is 162 degrees c in fahrenheit?

323.6


What is case select in c language?

It is switch-case. Example: switch (opsign) { case '+': . result = a + b; . break; case '-': . result = a - b; . break; ... default: . printf ("opsign=%c unknown\n", opsign); }


Why c language has name c why not a?

C-language was derived from B-language.


How do you make software for free?

Makuing a software requires that you know the language like c++ or c sharp. You will tha do some coding and compile that result in a software.


How do you find the diameter with a circumference of 162 yards?

Circumference = diameter times pi. C = 162 times 3.14159 = 508.938 yards.


What is previous language of c language?

language before c language is pascal


What is C language what does it do?

C Language is First Step of Programming Language, Help for C Language you are show the correct answer


What are the 5 types of operation in info processing?

They are + , - , * , / , % (Modulo->It evaluates the remainder of a division.) NOTE: The % operator is modulo only in the C-based languages. In the VB languages, it is Mod ex: a = 5 b = 2 c = a + b (result is 7) c = a - b (result is 3) c = a * b (result is 10) c = a / b (result depends on language... either 2 (only the whole number part) or 2.5) c = a % b (result is 1) (the above might look like c = a mod b) Hope this will help you.