how to find the largest element of array without using relational operater?

Answer Posted / mpasinski

Regarding Answer2 - what if int in your machine is 32 bit
instead of 16. The code is not universal.

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between call by value and call by reference in c language?

857


What is the difference between procedural and functional programming?

712


What is property type c?

827


Explain how can I convert a number to a string?

843


Explain how do I determine whether a character is numeric, alphabetic, and so on?

869


What is a pointer in c?

958


what is the difference between class and unio?

2087


Why c is a procedural language?

791


What is the general form of function in c?

781


Why is this loop always executing once?

787


Who developed c language?

828


Why we use break in c?

741


What is the difference between if else and switchstatement

1547


A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference

837


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'); }

919