which of the function operator cannot be over loaded
a) <=
b)?:
c)==
d)*
Answer Posted / anas
In 'C' there is no concept of overloading.
If we talks about C++ then TRINARY operator (? : ) cant be over loaded.
So, only the option (b) is correct.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the use of a semicolon (;) at the end of every program statement?
What are the preprocessor categories?
What are valid operations on pointers?
What is difference between far and near pointers?
How can you increase the size of a statically allocated array?
Do character constants represent numerical values?
Explain how can you determine the size of an allocated portion of memory?
What is modeling?
What is 2 d array in c?
What is an operator?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What are header files? What are their uses?
What are global variables and explain how do you declare them?
how many key words availabel in c a) 28 b) 31 c) 32
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }