the operator for exponencation is
a.**
b.^
c.%
d.not available
Answers were Sorted based on User's Feedback
Answer / sathish kumar
Hi All,
Upto my knowledge exponentiation operator is not available
in C. Because ^ operator is used for XOR operation. So we
cannot use that. But its possible by using Bitwise
operator to perform Exponentiation.
Thanks & Regards
Sathish Kumar
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / valli
No expoenetial operator avaialble.
but library function pow() can be used.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / anuj pratap singh
Ans-d.not Available
Because in C ,there is no operator for exponencation.
we find out exponent in c by pow() funtion.
somebody confusion in ^ operator but this is use for XOR.
| Is This Answer Correct ? | 3 Yes | 0 No |
what is a c-language.what is do.
Why doesnt this code work?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What are actual arguments?
What language is windows 1.0 written?
Write a program to find whether the given number is prime or not?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
What is the purpose of the fflush() function in C?
inline function is there in c language?
What is meant by global static? why we have to use static variable instead of Global variable
Write a pro-gramme to determine whether the number is even or odd?