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 is the difference between malloc calloc and realloc in c?
what is array?
how do we remove the printed character in printf statement and write next it it
How do you determine the length of a string value that was stored in a variable?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
What are terms in math?
Write a c program to demonstrate Type casting in c?
void main() { int a=1; while(a++<=1) while(a++<=2); }
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
What is wrong with this program statement? void = 10;
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
How can I manipulate strings of multibyte characters?