which of the function operator cannot be over loaded
a) <=
b)?:
c)==
d)*
Answer Posted / ravi
answer is b. that is ?:
| Is This Answer Correct ? | 73 Yes | 3 No |
Post New Answer View All Answers
Why do we need arrays in c?
how can f be used for both float and double arguments in printf? Are not they different types?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What are the similarities between c and c++?
Is c# a good language?
What does return 1 means in c?
How can I use a preprocessorif expression to ?
What is the use of volatile?
Can I initialize unions?
What is calloc() function?
How can I do graphics in c?
What is the difference between text and binary modes?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
What are extern variables in c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }