1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<=
Answer Posted / vivek
Answer is (d).
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
Can include files be nested?
What are the advantages and disadvantages of pointers?
Why do we use int main?
Explain how to reverse singly link list.
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Differentiate between ordinary variable and pointer in c.
How can I delete a file?
When a c file is executed there are many files that are automatically opened what are they files?
write a program to rearrange the array such way that all even elements should come first and next come odd
What is a built-in function in C?
What is the difference between array and structure in c?
What is class and object in c?
How can I convert a number to a string?
Is c is a procedural language?
What is strcmp in c?