पोस्ट्स

मार्च, २०२२ पासूनच्या पोेस्ट दाखवत आहे

How do I start learning C++ programming? | Definition, About, features of C++ programming and learn OOPs concept of C++ programming.

इमेज
  What is C++ Programming          C++ is an object-oriented programing language which gives a clear structure to programs and allows code to be reused, lowering development cost. It is class base programming language. About C++ Language  C++ is a cross-platform language that  can be used to create high-performance applications. C++ was developed by Bjarne Stroustrup at Bell Labs in 1979. The different edition of C++ programming release in 1985, 1989, 1998, etc. C++ is standardized by the International Organization for Standardization. Features of C Language  Classes & Objects is the process of hiding irrelevant information from the user. Abstraction is the process of hiding background detail and showing essential information. Encapsulation is the process wrapping of data member and member function in to single class. Inheritance is the process of child class access all properties of their parent class and also access their own. Polymorph...

What are the C Programs asked in interviews? | Top programs in C, Mostly ask in interview, most helping for improve logic.

इमेज
Important program of C Language that are asking in Interview //Palindrome Number Program in C #include<stdio.h> int main() {     int n, r, sum=0, temp;     printf("Enter the number=");     scanf("%d", &n);     temp=n;     while(n>0)     {         r = n%10;         sum = (sum*10)+r;         n = n/10;     }     n=temp;     if(n==sum)     {         printf("Palindrome Number");     }     else     {         printf("Not a Palindrome Number");     } } Output: Enter the number=4554 Palindrome Number //Prime Number Program in C #include<stdio.h> int main() {     int n, i, count=0;     printf("Enter the number=");     scanf("%d", &n);     for(i=1; i<=n; i++)     {     if(n%i==...