how to find the largest element of array without using relational operater?
Answer Posted / bkushwaha89
code and explation.
| Is This Answer Correct ? | 7 Yes | 14 No |
Post New Answer View All Answers
Explain how can I read and write comma-delimited text?
Explain what is the difference between functions getch() and getche()?
Which is more efficient, a switch statement or an if else chain?
what is the role you expect in software industry?
List out few of the applications that make use of Multilinked Structures?
What is the difference between printf and scanf in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Why do we use static in c?
What is 'bus error'?
What does typedef struct mean?
What is assert and when would I use it?
Why is c called c not d or e?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is meant by 'bit masking'?
How can I remove the trailing spaces from a string?