Category: Language
Anonymous Answered Feb 22 I’ll go against popular opinion. I started with Python. I did all my…
code: for c++ this link link or google search is good but i didn’t found any goood…
code: #include<iostream> #include<cstdio> using namespace std; int main() { int n,flag=0; cin>>n; int a[n]; for(int i=0; i<n;…
#include<vector> #include<iostream> using namespace std; int main() { vector<string> list; cout<<“Please enter the names, press Q to…
Best Video Explained: code: some bugs here but understood the implementation: #include<bits/stdc++.h> void display(void); void addatbegin(void); void…
code: int euclid_gcd(int a,int b) { int dividend,divisor,remainder; dividend = a>=b?a:b; divisor= a<=b?a:b; while(divisor!=0) { remainder=dividend%divisor; dividend=divisor;…
Recent Comments