#include <iostream> using namespace std; class x { int i; public: x(int k) { i=k; } friend ostream&...

Programming Language in C & C++
#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...