Problem Solving Through Programming in C Week 4: Programming Assignments Jul-Dec 2022
bySimple Edu Talk-
0
NPTEL PROGRAMMING ASSIGNMENTS
Problem Solving Through Programming in C
Week-04 Program-01
Last Day of Submission: 25-Aug-2022
Write a C Program to Find the Smallest Number among Three Numbers (integer values) using Nested IF-Else statement.
Week-04 Program-02
Last Day of Submission: 25-Aug-2022
Write a program to find whether a given character is a Vowel or consonant. A character is taken as input. The character may be in Upper Case or in Lower Case.
Week-04 Program-03
Last Day of Submission: 25-Aug-2022
Write a C program to calculate the Sum of First and the Last Digit of a given Number. For example if the number is 1234 the result is 1+ 4 = 5.
Week-04 Program-04
Last Day of Submission: 25-Aug-2022
Write a C program to find power of a number using while loops. The base number (>0) and exponent (>=0) is taken from the test cases.