Recent Posts From All Categories

Showing posts with label AssignmentSolutionC. Show all posts
Showing posts with label AssignmentSolutionC. Show all posts

Display smallest number among array elements - C

Q. Assume that the array have size 10. WAP to request the 10 integers from users store it into array and display the smallest number among t...
Read More

Create simple menu using switch case - C

Q. WAP to create a simple menu using switch case. [8] #AssignmentNo7 ==> Code goes like this: #include<stdio.h> int main() {   ...
Read More

find smallest and largest number in a given array using pointer - C

Q. WAP to find smallest and largest number in a given array using pointer. [6] #Assignment2b ==> Code goes like this: #include<std...
Read More

Store 10 employees record in a data file and display who gets lowest salary - C

Q. WAP to input 10 employee records (Emp_Id, Emp_Name, Emp_Salary) and store them in a datafile named Employee.dat. Display the employee who...
Read More