Skip to content

Instantly share code, notes, and snippets.

#include <cstdlib>
#include <string>
#include <stdio.h>
#include <iostream>
using namespace std;
char* EX(char* A)
{ int i=0;
for(int j=0; A[j]; ++j)
{
A[i++]=A[j];
#include <iostream>
#define ARRA 3
using namespace std;
int main(){
int arr[ARRA][ARRA];
int i, j;
int sum = 0;
#include <iostream>
using namespace std;
int main () {
long int x;
int a,b;
cout << "Enter the number: ";
cin >> x;