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
Explain the difference between call by value and call by reference in c language?
What is the difference between procedural and functional programming?
What is property type c?
Explain how can I convert a number to a string?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is a pointer in c?
what is the difference between class and unio?
Why c is a procedural language?
What is the general form of function in c?
Why is this loop always executing once?
Who developed c language?
Why we use break in c?
What is the difference between if else and switchstatement
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
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'); }