the operator for exponencation is
a.**
b.^
c.%
d.not available
Answer Posted / 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 |
Post New Answer View All Answers
Why we use stdio h in c?
please send me the code for multiplying sparse matrix using c
What is sizeof return in c?
What does sizeof return c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What are enums in c?
What does == mean in texting?
Explain c preprocessor?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
What is clrscr in c?
I need testPalindrome and removeSpace
#include
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is register variable in c language?
What is quick sort in c?
how to write a c program to print list of fruits in alpabetical order?