Which operators cannot be overloaded

a) Sizeof

b) .*

c) ::

d) all of the above



Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above..

Answer / Ruchi Yadav

d) all of the above

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.

1 Answers  


How do I swap bytes?

1 Answers  


what is available in C language but not in C++?

10 Answers   CTS, TCS,


What is the difference between void main() and int main()?

1 Answers  


which is the best antivirus and how to update it

7 Answers   Infosys,


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

1 Answers  


Differentiate between calloc and malloc.

1 Answers   Wipro,


What is a wrapper function in c?

1 Answers  


What are the different file extensions involved when programming in C?

1 Answers  


void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?

4 Answers   Groupon,


What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }

4 Answers   ADITI,


write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.

1 Answers   Subex,


Categories