implement NAND gate logic in C code without using any
bitwise operatior.
Answer Posted / qwake
!(a*b)
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
What is the purpose of main( ) in c language?
Write a progarm to find the length of string using switch case?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Why c is called object oriented language?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is the difference between fread and fwrite function?
Is c call by value?
What is d'n in c?
What is the function of this pointer?
What is a pointer and how it is initialized?
What is the use of printf() and scanf() functions?
Is there a built-in function in C that can be used for sorting data?
What do you understand by normalization of pointers?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Do you know the purpose of 'register' keyword?