1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<=
Answer Posted / jignesh
ans is c....write
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
How can I implement sets or arrays of bits?
what does static variable mean?
How can I dynamically allocate arrays?
Why doesn't C support function overloading?
Explain how can I open a file so that other programs can update it at the same time?
What is the use of volatile?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Can a variable be both constant and volatile?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
all c language question
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How do c compilers work?
What is unary operator?