Recent Posts From All Categories

Showing posts with label OldQuestionSolution2015C. Show all posts
Showing posts with label OldQuestionSolution2015C. Show all posts

Read a character and convert it into uppercase if it is in lowercase or vice-versa - C

Q. WAP to read a character from keyboard and convert it into uppercase if it is in lowercase or vice-versa. #BIT_FirstSem_2015_11No_8Marks_...
Read More

Asterisk Pattern Printing in C

Q. WAP to generate following output:         *       **     ***   **** ***** #BIT_FirstSem_2015_9No_8Marks_Solution #include<std...
Read More

Drawing rectangle and circle in C

Q. Write C program to display: a) a rectangle whose height is 200 pixels and width is 400 pixels b) a circle whose diameter is 200 pixels ...
Read More

Perform matrix multiplication using array and pointer - C

Q. WAP to perform matrix multiplication using array and pointer. #BIT_FirstSem_2015_6No_8Marks_Solution ==>Code goes like this: #incl...
Read More

Take numbers and display the sum of even numbers and odd numbers separately - C

Q. WAP to take numbers and display the sum of even numbers and odd numbers separately. #BIT_FirstSem_2015_3No_8Marks_Solution ==> Code ...
Read More

Displaying employee info having highest salary from data file having 10 records - C

Q. Write a program to input 10 employee records (Emp_id, Emp_Name and Emp_Salary) and store them in a data file named "Emp.dat". D...
Read More