Question: The code is in C Problem 1: You are given an array of integers array[I and an input x. You have to find if there
Problem 1: You are given an array of integers "array[I" and an input "x". You have to find if there are any two numbers in your array such that the sum of their square equals to x. In other words, you have to find out if there is any pair of ij such that array[i] + arrayilx If there are such pairs, you should print all such (ij). Otherwise print "There are no such pairs". Example: array[]: 2,-4, 6, 3, 9, 0,-1,9 X: You have l pair (-4)" + (3)"-5, so your output would be corresponding array indices: (1, 3) romt You also need to take the value of "x" from the user
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
