which of the function operator cannot be over loaded
a) <=
b)?:
c)==
d)*
Answer Posted / sahithya
overload concept will face in C++ i.e., if we declare a
same function with different times .
In c we dont have any overloadind concept .
ofcourse by seing the options we can say easily that
options will need of 3 or 2 operands compulsory.so
overloading does not occur
Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Explain what is a pragma?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Where register variables are stored in c?
What is null pointer in c?
What is the explanation for modular programming?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
List out few of the applications that make use of Multilinked Structures?
Explain continue keyword in c
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
If I have a char * variable pointing to the name of a function ..
can we have joblib in a proc ?
How can you find the exact size of a data type in c?
Why do we write return 0 in c?
What are local variables c?