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

Answer Posted / manu

a

Is This Answer Correct ?    4 Yes 12 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does int main () mean?

543


How does struct work in c?

604


What is meant by 'bit masking'?

880


write an algorithm to display a square matrix.

2218


How can I find out the size of a file, prior to reading it in?

616






How do you use a pointer to a function?

627


What is string function in c?

533


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

683


Write a C program to count the number of email on text

1412


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5192


What is the use of #define preprocessor in c?

613


write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.

2449


When is the “void” keyword used in a function?

826


Write a program to swap two numbers without using third variable?

812


code for quick sort?

1618