how to find the largest element of array without using relational operater?
Answers were Sorted based on User's Feedback
Answer / upendra singh and avinash cho
#include<stdio.h>
#include<string.h>
void main()
{
int arr[4]={1,10,5,4},c,i,k,j=1;
k=arr[0];
for( i=0;i<3;i++)
{ c=k-arr[i+1];
c=c>>15;
if(c)
k=arr[i+1];
}
printf("largest number %d",k);
getch();
}
| Is This Answer Correct ? | 25 Yes | 11 No |
Answer / 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 |
Answer / s.gayathri
using conditional operator we do that operation
| Is This Answer Correct ? | 3 Yes | 3 No |
/*
find a largest number out of an given array without
using relational operators
*/
#include<stdio.h>
int f(int m,int n)
{if(!(m/n)) return n;
else return m;
}
int main()
{
int a[100],n=0,i,j;
scanf("%d",&n); // length of array (max 100)
for( i=0;i<n;i++)
scanf("%d",&a[i]);
int s=a[0];
a[n+1]=0;
for( j=1;j<n;j++)
{
if(f(a[j],s))
s=a[j];
}
printf("%d",s);
return 0;
}
for further queries and discussions, just check these out !!!
http://forum.campusmaniac.com/
http://www.campusmaniac.com/
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / dhakchina moorthy.p
sort the array first and then have the last element of the
array, which is always larger then the remaining.
| Is This Answer Correct ? | 0 Yes | 2 No |
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,
What is null in c?
how to write a prog in c to convert decimal number into binary by using recursen function,
Why do we need arrays in c?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
Does free set pointer to null?
How to print India by nested loop? I IN IND INDI INDIA
What does it mean when a pointer is used in an if statement?
What is the total generic pointer type?
pierrot's divisor program using c or c++ code
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol