Assignment I - Basic 'C'

Assignment 1



To convert temperaturefrom farenheit to celcius.

Best deals for Mobile


To check if number is positive, negative orzero.


Display all numbers between two given numbers.


Write a 'C' program to calculate area and circumference of a circle.


Write a ‘C’ program to calculate area and perimeter of a rectangle.


Write ‘C’ program to accept a single digit and display it in words. Forexample, Input = 9 Output = Nine


Write a ‘C’ program to accept an array of n floatvalues and display them in the reverse order.

Write ‘C’ program to find the maximum number froman array of n integers.

Write a ‘C’ program to accept n integers in an array and search for a specific number.

Write a ‘C’ program to accept a character and checkif it is uppercase or lowercase.

Write a ‘C’ program to accept three dimensionslength (l), breadth(b) and height(h) of a cuboid and print surface area(surface area=2(lb+lh+bh).

Write a ‘C’ program to accept dimensions of a cylinder and print the surfacearea and volume (surface area = 2πr2 + 2πrh, volume = πr2h)

Write a ‘C’ program to accept an integer and check if it is divisible by 3 and5.

Comments

Popular posts from this blog

Write a program to allocate memory dynamically for n integers. Accept the elements and calculate their sum and average

C program to accept names of n cities and search for city named “Pune”.