logic for x=y^n
Answer / abhishek
c=a^b
here ^ is an exclusive or operator whose equation is
(~(a)b)+(~(b)a)
truth table
a b c
1 1 0
1 0 1
0 1 1
0 0 0
| Is This Answer Correct ? | 3 Yes | 0 No |
what r the cpu registers r ther?
Why & is used in c?
biggest of two no's with out using if condition statement
In which category does main function belong??
Stimulate calculator using Switch-case-default statement for two numbers
What are extern variables in c?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What is the size of a union variable?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
Tell me can the size of an array be declared at runtime?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
How are pointers declared in c?