Question: Write a program in C to display the multiplication table of a given integer using for loop. Input the number (Table to be calculated):
Write a program in C to display the multiplication table of a given integer using for loop. Input the number (Table to be calculated): 17 Expected Output: 17 X 1 = 17 Write the same Program using While and then Do while loop structures. Make sure to write meaning full comments. Question 2 (Topic: Functions in C) Part a: Create a C program using user define functions to calculate the Area of square Part b: Write a program in C using user define functions to check a given number is even or odd. In each part (a, b) of question NO.2, the user define function should be defined, declared in the following four different ways. So there should be four different programs for each part. 1. Using the function with no arguments and no return value 2. Using the function with no arguments and one return value 3. Using the function with arguments and no return value 4. Using the function with arguments and one return value
Step by Step Solution
3.54 Rating (158 Votes )
There are 3 Steps involved in it
Question 1 Multiplication Table in C Using for loop c inc... View full answer
Get step-by-step solutions from verified subject matter experts
