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 structure member in c?
what is the hardware model of CFG( context free grammar)
what is difference b/w extern & volatile variable??
Explain the meaning of keyword 'extern' in a function declaration.
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Describe the difference between = and == symbols in c programming?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
Does sprintf put null character?
write a program to add two numbers of any size.....(remember any size)
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
convert 0.9375 to binary
How do you convert strings to numbers in C?