Write a C program to perform addition, subtraction, multiplication and division of two integer numbers, respectively 2 and 6 and show the result on the screen.
Write a C program to print your name, date of birth, mobile numbers and university’s name on separate line.
Submit a Report "the impact of improving debugging skill on programming ability"
What is an array of pointers? Is it possible to have negative index in an array? Why is it necessary to give the size of an array in an array declaration?
What is a data type? Differentiate between array and pointer. Write a program to interchange 2 variables without using the third one.
What is a token? Differentiate between a for loop and a while loop? What are it uses?
What do you mean by Program? Briefly describe the basic structure of C programs.
Write a C program for Bubble Sort Algorithm for the descending order in
CodeBlocks using a user defined function.
Create a class Data with data members: height and breadth of object given by the user and member functions get_data() to read the values and put_data() to display the values. Create another class Rectangle that inherits class Data and implement its methods area Rectangle() and perimeter Rectangle() that computes the area and perimeter of a rectangle. Create another class Triangle that inherits class Data and implement its methods area Triangle() and perimeter Triangle() that computes the area and perimeter of a triangle.