C-Arrays-1
Each Project will have Reference Links which you can read to get a quick grasp on the topic and some Practice Questions,If you want more practice for each Topic .
Each Practice Question is slightly abstracted ,You need to make certain assumptions and write the best solution .Think for the best complexity algorithms .Remember also Space vs Time Tradeoff
Do not copy the Answers from Internet ,or from your friends as that will lead to your disqualification ,We will run copychecker tools ,and do a manual review too.So even changing variable names or changing for loops to while loops still leads to detection.
You are in the course for learning ,So Do learn and dont resort to any malpractices
Reference Links : (Right Click is disabled ,So Ctrl+C and Ctrl+V the links)
- http://www.thegeekstuff.com/2011/12/c-arrays/
- http://www.tutorialspoint.com/cprogramming/c_arrays.htm
- http://www.studytonight.com/c/arrays-in-c.php
- Again 100% C Course Completion is mandatory for Getting considered for Summer Program
Practice Questions :
- Find the maximum and minimum element in an unsorted array ?
- Given an unsorted array of numbers ranging from 1 to 500 .Now one element in the array is changed to 0 ,Find that element ?
- Given two arrays of N numbers in the Range -10000 to 10000, Find the common elements of both Arrays ?
- Given an array of N unique numbers except 1,Find that number ?
- Given an array of N numbers ,Find All Triplets whose sum equal to a integer K ? {0,2,3,4,5,6} and K=10 ,gives output as {5,3,2} ,{6,3,1} ,{0,4,6} .Dont print All permutations of same Triplet like {0,4,6} ,{6,4,0 } etc .Print any 1 .
- Given an array of N numbers ,Find its L.C.M and G.C.D?
C Quiz : Find what the below functions Do ?