Identify the operators that is not used with pointer
a. &&
b. #
c. *
d. >>
Answer Posted / bhargavi
'>>' operator
| Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers
What are the 4 data types?
What is sizeof int in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What are nested functions in c?
#include
What is a pragma?
Write a program with dynamically allocation of variable.
int i=10; printf("%d %d %d", i, i=20, i);
Explain the use of fflush() function?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Where does the name "C" come from, anyway?
What is the difference between exit() and _exit() function in c?
What is use of null pointer in c?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Write a program to print factorial of given number using recursion?