the operator for exponencation is
a.**
b.^
c.%
d.not available

Answers were Sorted based on User's Feedback



the operator for exponencation is a.** b.^ c.% d.not available ..

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

the operator for exponencation is a.** b.^ c.% d.not available ..

Answer / sraddha

d.not available is d right ans.

Is This Answer Correct ?    5 Yes 0 No

the operator for exponencation is a.** b.^ c.% d.not available ..

Answer / valli

No expoenetial operator avaialble.

but library function pow() can be used.

Is This Answer Correct ?    3 Yes 0 No

the operator for exponencation is a.** b.^ c.% d.not available ..

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

the operator for exponencation is a.** b.^ c.% d.not available ..

Answer / sundeep

b.^

Is This Answer Correct ?    5 Yes 5 No

Post New Answer

More C Interview Questions

what is unsigened char and what is the difference from char

2 Answers  


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

0 Answers  


Explain what are the standard predefined macros?

0 Answers  


Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop

0 Answers   HP,


Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 2. Enter alphanumeric characters and form 2 array alphaets and digits.Also print the count of each array.

0 Answers  






What is the purpose of ftell?

0 Answers  


Is a house a shell structure?

0 Answers  


How can I read in an object file and jump to locations in it?

0 Answers  


write a progam to compare the string using switch case?

1 Answers  


what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?

1 Answers  


which header file contains main() function in c?

17 Answers   Google, HCL, TCS,


the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above

0 Answers  


Categories