In this pointer is pointing the memory address of variable but after some variable has deleted from that memory location while pointer is...

Programming Language in C & C++
In this pointer is pointing the memory address of variable but after some variable has deleted from that memory location while pointer is...
#include<stdio.h> #include<conio.h> #include<alloc.h> typedef struct bint { int data,flag; struct bint *left,*...
#include <iostream> using namespace std; class x { int i; public: x(int k) { i=k; } friend ostream&...
#include<stdio.h> main() { int num = 1; if(*(char *)&num == 1) { printf("\nLittle-Endian\n"); ...
Actually c is a procedural programming language which cann't face the real world problem. It has some drawback like a global data ...
#include <stdio.h> #include<ctype.h> #include<stdlib.h> #define MAXSIZE 5 int cq[MAXSIZE]; int front,rear; void ma...
#include<iostream.h> #include<conio.h> #include<process.h> class list { struct dlist { int data; struct dlist *...
#include<stdio.h> #include<conio.h> void main() { int a[10],i,j,s=0; clrscr(); printf("Enter the elements of The...