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 |
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
How do you define structure?
Do you know null pointer?
Is c programming hard?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is "Hungarian Notation"?
How can you allocate arrays or structures bigger than 64K?
What is the difference between c &c++?
how can i sort numbers from ascending order and descending order using turbo c..
What is the purpose of sprintf() function?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits