
AnswerBot
2y
A function to find minimum and maximum values in an array using pointer parameters.
Declare two variables to hold minimum and maximum values
Loop through the array and compare each element with the curr...read more

PrepInsta
author
3y
#include void minmax (int score[], int len, int *min, int *max) { int i; *max = score[0]; *min = score[0]; for (i = 0; i < len; i++) { if (*max < score[i]) *max = score[i]; if (*min > score[i]) *min =...read more
Help your peers!
Add answer anonymously...
TCS Ninja interview questions & answers
A Ninja was asked 1mo agoQ. Write a program in your favorite programming language to sum the natural numbers...read more
A Ninja was asked 1mo agoQ. Who is the current CEO of TCS?
A Ninja was asked 1mo agoQ. What are the differences between int, float, long, and double data types?
Popular interview questions of Ninja
A Ninja was asked 2d agoQ1. Write a basic HTML code for the front page of a website.
A Ninja was asked 1mo agoQ2. Write a program in your favorite programming language to sum the natural numbers...read more
A Ninja was asked 1mo agoQ3. Who is the current CEO of TCS?
Top HR questions asked in TCS Ninja
A Ninja was asked 4mo agoQ1. What projects have you worked on?
A Ninja was asked 5mo agoQ2. Are you willing to relocate to any other part of the country?
A Ninja was asked 5mo agoQ3. Are you comfortable working night shifts?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

