Write a program to find minimum between three no.s whithout
using comparison operator.
Answer Posted / sanjeet kumar
with the help of ternary operator
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
Is calloc better than malloc?
Explain what are run-time errors?
What is malloc and calloc?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is a const pointer?
What are the types of unary operators?
Is c is a high level language?
What are nested functions in c?
Why main is used in c?
Do array subscripts always start with zero?
What is scanf_s in c?
Why isnt there a numbered, multi-level break statement to break out
What is stack in c?