write a code to find largest odd number from the given array
Anoniem
#include int main() { int max=0,i,j=0,b[100],k; printf("Enter the no of elements:\n"); scanf("%d\n",&n); printf("Enter the array elements:\n"); for(i=0;ib[k]) { k++; } else { max=b[k]; k++; } } printf("the max element is %d",max); return 0; }