Posts

How to take input from external file in C++

প্রথমে নিচের কোডটি দেখে নেই।  # include <bits/stdc++.h> using namespace std ; int main () {     freopen( "input.txt" , "r" ,stdin), freopen( "output.txt" , "w" ,stdout);           //your code goes here     return 0 ; } প্রথমে মেইন ফাংশন এ আমাদের আসল কোডটি লিখতে হবে । কোডটি হল  freopen( "input.txt" , "r" ,stdin), freopen( "output.txt" , "w" ,stdout) এখানে freeopen ফাংশনটি ব্যবহার করে আলাদা ফাইল থেকে ইনপুট নেয়া ও আলদা ফাইলে আউটপুট দেয়া হয়। freopen( "input.txt" , "r" ,stdin)  এখানে "input.txt”  লেখা হয়েছে যেটি আসলে যে ফাইল থেকে ইনপুট নেয়া হবে সেই ফাইলের নাম এটি input.txt না হয়ে mango.txt ও হতে পারে :p তারপর “r” দিয়ে বোঝানো হচ্ছে ফাইলটি read করতে হবে তারপর stdin  মানে Standard Input file একইভাবে  freopen( "output.txt" , "w" ,stdout) “output.txt” দিয়ে ফাইলের নাম , “w” দিয়ে বোঝাচ্ছে ফাইলটি  write  করতে হবে মানে আউটপুট ওখানে জমা হবে  এবং সবশেষে  stdout  মানে

C Program to find is taken input Prime or not

Google Meet কি এবং এটা কিভাবে ব্যবহার করব?

Image
আজকের আমার লেখার উদ্দেশ্য হচ্ছে Google Meet কিভাবে ব্যবহার করে অনলাইনে ক্লাশ করা যায় তার একটা বিস্তারিত নির্দেশিকা দেয়া । প্রথমে কিছু সাধারণ প্রশ্ন উত্তর দিয়ে শুরু করি। প্রশ্ন ১ঃ ভাইয়া Google Meet জিনিসটা কি? -  Zoom এর সাথে তো মোটামোটি সবাই পরিচিত আছি আমরা। Zoom এর মতই Google একটা ভিডিও কল এর এপস বের করেছে যেটা হল Google Meet আগে Paid ছিল এবং এর করোনা ভাইরাসের সময় অনলাইন ক্লাশ এর জন্য ফ্রি করে দিয়েছে আপাতত। প্রশ্ন ২ঃ ভাইয়া Google Meet নামাবো কিভাবে ? - Google Play Store এ যেয়ে Google Meet লিখে সার্চ দিয়ে নামালেই হবে Play Store থেকে নামাতে এখানে ক্লিক কর তবে যারা কম্পিউটার এ আছো তাদের কারো এপ নামাতে হবে না Google Chrome  থেকে www.meet.google.com  এ ক্লিক করে মিটিং কোড দিলেই হবে বা সরাসরি লিংক এ ক্লিক করলেই হবে। প্রশ্ন ৩ঃ ভাইয়া ক্লাশ করব কিভাবে? - Zoom এর মত এখানেও ক্লাশের লিংক দেয়া হবে সবাই কে। লিংকটা হবে এরকম meet.google.com/aaa-bbbb-ccc (এখানে a,b,c প্রতীকি অর্থে) aaa-bbbb-ccc হল মিটিং কোড (-) সহ। লিংকটা তে ক্লিক করলেই সরাসরি Meet চালু হয়ে যাবে এবং নি

Sample Code

Another sample code

Browser Cookies: What the hell is this?

Image
Some browsers with a cookie What do we know about a cookie? A  cookie  is a  baked  or cooked  food  that is typically small, flat and sweet. It usually contains  flour ,  sugar  and some type of  oil  or  fat . It may include other ingredients such as  raisins ,  oats ,  chocolate chips , nuts, etc. So, in one word this is a food that humans or any other animals can eat. Some Cookies in a tray But wait a minute. We are talking about browser cookies and it is related to Computer. But can computers really eat any cookies like a human? And the answer is a big NO. Then what is a browser cookies? Well, in computer a cookie is information stored on your computer by a website you visit. In some browser, each cookies are in a small file but some browser like Firefox store all of your information in a single file which is used for all website cookie. Cookies often store website settings like your language or location. It also stores many personal information