which of the function operator cannot be over loaded

a) <=
b)?:
c)==
d)*

Answer Posted / guest

c)==

Is This Answer Correct ?    0 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What kind of structure is a house?

547


What does malloc () calloc () realloc () free () do?

548


What is bss in c?

594


Are negative numbers true in c?

587


Explain the advantages of using macro in c language?

567






what is the significance of static storage class specifier?

1650


What is the difference between the local variable and global variable in c?

524


When can a far pointer be used?

584


What is a pointer and how it is initialized?

597


What is the use of f in c?

551


In c language can we compile a program without main() function?

567


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

760


how can f be used for both float and double arguments in printf? Are not they different types?

602


What is a ternary operator in c?

646


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

2640