Amazon Interview Solution: Power of 2 Add Comment Edit Given a positive integer N . The task is to check if N is a power of 2 . That is N is 2 x for some x. Input: The first line contain... Read More
How to Make a Chart Control in MFC C++ 2 Comments Edit Download Chart Library: https://drive.google.com/file/d/1W_zpvhO2jTDApoXxKBfY0mUKsZ0XGm4Q/view?usp=sharing Download Full Code: https:... Read More
How to Implement Two Way Named Pipe Server (Matlab) and Client (C++) Add Comment Edit Two Way Named Pipe Server (Matlab) and Client (C++) Code : https://github.com/shawon100/Named-Pipe-Server-and-Client Read More
Software Company-Wise Interview Experiences (Bangladesh) 3 Comments Edit This is my interview experiences as a fresher software engineer . I have tried to give an overview of the interview process that i face... Read More
Virtual function of C++ Explained in Bangla Add Comment Edit C++ এ Virtual function সাধারনত ব্যবহার করা হয় function Override করার জন্য। Virtual কী ওয়ার্ড না দিলেও ফাংশন ওভার রাইড হবে কিন্তু ex... Read More
Moving Median Code in C++ Add Comment Edit N.B: Outputs are similar to matlab built in function movmedian #include <bits/stdc++.h> using namespace std; vector<double&... Read More
Moving Mean or Moving Average in C++ Add Comment Edit N.B: Outputs are similar to matlab built in function movmean #include <bits/stdc++.h> using namespace std; vector<double&g... Read More