which of the function operator cannot be over loaded
a) <=
b)?:
c)==
d)*
Answer Posted / ravi
answer is b. that is ?:
| Is This Answer Correct ? | 73 Yes | 3 No |
Post New Answer View All Answers
Which function in C can be used to append a string to another string?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is "Duff's Device"?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Explain built-in function?
What is memory leak in c?
What is the difference between strcpy() and memcpy() function in c programming?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
How main function is called in c?
why we wont use '&' sing in aceesing the string using scanf
What are the functions to open and close the file in c language?
What is dangling pointer in c?
Can we declare a function inside a function in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is LINKED LIST? How can you access the last element in a linked list?