1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<=
Answer Posted / b.dinesh reddy
Option 'C' will be the answer as we cant overload the
operator '?!' whereas remaining can be overloaded in oop
languages.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
#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); }
What is string in c language?
What are the functions to open and close file in c language?
How many parameters should a function have?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
What are the advantages and disadvantages of a heap?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Can a pointer be volatile in c?
What are structural members?
What is difference between stdio h and conio h?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Explain the difference between null pointer and void pointer.
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?