[Compiler Design] Lexical Analyzer code in C++ Add Comment Edit This Lexical analyzer code matches keyword, identifiers with text files. So you need to download all .txt file from this link https:... Read More
Find Out CPU Time Of A Program In C++ Add Comment Edit #include <bits/stdc++.h> #include <time.h> using namespace std; int main() { clock_t begin,end; double time; int... Read More
First Come First Serve (FCFS) Scheduling Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { vector<pair<int,int> >v; int x[100],wt[100]; //fre... Read More
Shortest Job First (Preemptive) Scheduling in C++ 2 Comments Edit #include <bits/stdc++.h> using namespace std; bool compare( const pair<long long int,long long int>& x, const pair<long ... Read More
Object Oriented Programming Examples Add Comment Edit C++ Version # Constructor #include <bits/stdc++.h> using namespace std; class timer { int n,i,j; clock_t start,end... Read More
How to make reverse order of words in a sentence Add Comment Edit Input String : I am a good boy Output String : boy good a am I #include <bits/stdc++.h> using namespa... Read More
How To Convert Integer To String in C++ Add Comment Edit Supppose I have an integer= 0123456789101112 . Now This Integer Can be Converted into String By stringstream class Here is Code in C... Read More
How To Divide Two Number Without Divide / Operator Add Comment Edit #include <iostream> #include <bits/stdc++.h> using namespace std; int add(int a, int b) { int carry=1,sum; while(c... Read More
How To Multiply Two Number Without Multiply * Operator Add Comment Edit #include <iostream> #include <bits/stdc++.h> using namespace std; int mul(int a, int b) { int carry=1,sum; whi... Read More
How To Subtract Two Number Without Minus - Operator 1 Comment Edit #include<iostream> #include<stdio.h> using namespace std; int main() { int a,b,carry=1,sum; scanf("%d %d",... Read More
How To Add Two Number Without Plus + Operator Add Comment Edit #include<iostream> #include<stdio.h> using namespace std; int main() { int a,b,c,d,carry=1,sum,i,j; scanf(... Read More
English To Bangla Date Converter C++ (ইংরেজী তারিখ থেকে বাংলা তারিখ রূপান্তর) Add Comment Edit সাল এর ক্ষেত্রে ইংরেজী সাল থেকে ৫৯৩ বিয়োগ দিলেই বাংলা সাল পাওয়া যাবে। তবে সেটা এপ্রি... Read More