Posts

NPTEL Introduction to programming in c Assignment 4 solutions

Question 1: Programming Assignment_4 Question 1 Due on 2018-09-27, 23:59 IST Given two arrays of integers output the smallest number in the first array not present in the second one. Input Specification: The first line contains the size N1 of the first array. Next line give the contents of the first array. Next line contains the size N2 of the second array. Next line give the contents of the second array. Output Format: Output must be a single number which is the smallest number occurring in the first array that does not occur in the second. In case there is no such number, output NO. Variable Constraints: The sizes of the arrays are smaller than 20. Each array entry is an integer which fits an int data type. Example: Input: 3 2 3 4 4 1 3 5 7 Output: 2 Input 1 1 2 1 2 Output: NO Select the Language for this assignment.        --                       C    ...