• By Surbhi nahta
  • March 2, 2022
  • C and C++ Programing

Inheritance Hi, in this blog we are discussing inheritance in the C++ programming language. In this we will see what is inheritance and what are the different types of inheritance…

Programming is Easy
  • By Pruthwiraj ghadge
  • December 14, 2019
  • C and C++ ProgramingJAVA Programming

Programming is Easy Hello friends, this is Pruthwiraj Ghadge back again with a new blog of Java Course In Pune. I always wonder how people write programs in their general…

Data Structure Using C
  • By Priyanka Mhaske
  • August 29, 2019
  • C and C++ Programing

Data Structure Using C Hello Everyone..... Are you started coding..?? When you are starting your coding journey, the question arises that What are the fundamental concepts I need to know?…

Pointer in C
  • By Priyanka Mhaske
  • July 24, 2019
  • C and C++ Programing

What is Pointer? Pointers stores the address of variables or a memory location. Syntax: datatype *var_name; e.g. int *ptr; Above example states that: //An example pointer "ptr" that holds //…

C And C++ INTERVIEW QUESTIONS
  • By Priyanka Mhaske
  • June 20, 2019
  • C and C++ Programing

C And C++ INTERVIEW QUESTIONS 1) How to clear console in C language?    Ans- clrscr() function is used clear console in C programming.    This  function is included in…