which operator is known as dummy operator in c?
Answer Posted / googly
unary +
| Is This Answer Correct ? | 39 Yes | 2 No |
Post New Answer View All Answers
What is the full form of getch?
What is an arrays?
What is static and auto variables in c?
What standard functions are available to manipulate strings?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is an lvalue?
Which is more efficient, a switch statement or an if else chain?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is the best organizational structure?
Is stack a keyword in c?
List the variables are used for writing doubly linked list program.
Explain about C function prototype?
Can you subtract pointers from each other? Why would you?
What is static function in c?
How can you determine the maximum value that a numeric variable can hold?