1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<=

Answer Posted / rohit

ans is C

Is This Answer Correct ?    82 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Does c have circular shift operators?

733


what is the format specifier for printing a pointer value?

617


Write a factorial program using C.

645


Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

570


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

679






What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1959


What is the translation phases used in c language?

636


how to build a exercise findig min number of e heap with list imlemented?

1613


Write a Program to find whether the given number or string is palindrome.

613


Can you think of a logic behind the game minesweeper.

2011


what are non standard function in c

1438


Explain function?

665


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1662


What is the sizeof () operator?

625


What is build process in c?

645