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…