1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<=
Answers were Sorted based on User's Feedback
Answer / b.dinesh reddy
Option 'C' will be the answer as we cant overload the
operator '?!' whereas remaining can be overloaded in oop
languages.
| Is This Answer Correct ? | 0 Yes | 0 No |
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Explain how can you tell whether two strings are the same?
What does != Mean in c?
how to find the size of the data type like int,float without using the sizeof operator?
How to write the code of the program to swap two numbers with in one statement?
What does c mean in standard form?
What are loops in c?
What are directives in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
How can I run c program?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
how to find the given number is prime or not?