FEATURES OF OOP: Object: Object is a collection of number of entities. Objects take up space in the memory. Objects are instances of classes. When a program is executed , the objects interact by sending messages to one another. Each
C/C++ program to reverse a given number – Computer Practical
In this practical we will learn to reverse any given number in C & C++. If Input: 1357 Then, Output: 7531 C program to reverse a given number #include <stdio.h> int main() { int n, reverse = 0; printf(“Enter a