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 |
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
1,1,5,17,61,217,?,?.
write a c programme for add of two numbers with out use of arthematic operators
in which language c language is written?
What are the different types of control structures in programming?
What are the different types of storage classes in C?
what is the difference between global variable & static variable declared out side all the function in the file.
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
What's a "sequence point"?
Can you think of a way when a program crashed before reaching main? If yes how?
What is pointer to pointer in c with example?
Program to write some contents into a file using file operations with proper error messages.