Skip to main content

About Us

101CSThings is buildup with the purpose to take you from beginner to advanced level in the field of computer science.

What we write about?

You will find here the necessary installation guides to compilers and IDE. We teach how to code to beginners and take them to advanced level with our easy to understand methods. We also give interactive exercise to users to build their interest in a certain programming language. We keep posting about the solutions one may tackle while installing or the errors programmers usually get due to small or large bugs in their programs.
Users are free to use their own methods or build up their own logic while coding. We will really appreciate if the users will share their opinions and the methods that they find useful. Also, they must report bugs and allow us to provide solutions to it.
We write on a regular basis to keep our viewers updated. 

Keep Yourself Updated

Keep yourself up to date with our cs posts by subscribing to our mailing list.

We are eager to hear from you.

Mail us with your suggestions, feedbacks or say a Hello 😊

Popular posts from this blog

How to Install PyCharm? (Windows, Mac, Ubuntu)

  A little introduction PyCharm is one of the widely used IDE for python programming and used by many programmers these days. It is available in three editions: Professional, Community and Educational (Edu). We will prefer Edu edition as it is an open source and free to use. Also, it fits our purpose of learning python as a beginner. If you have already installed pycharm or some other compiler you can skip this and read the tutotrial here>> Let's Get Started with Python Install PyCharm You can go to the official page and follow the guide to installation, to go to the official page click here or stick with me and follow the steps below. This is the direct link to install PyCharm Edu>> click here Already Installed PyCharm Community or Professional? Then you just need to install EduTools Plugin. To install the plugin follow these simple steps: 1.        Go to Files>>Settings... or Press Ctrl+Alt+S to open Setting/Preferences dialogue. 2.  

101/Introduction to C language - part 1

We are assuming you have C compiler already Installed in your systems, if not you can read  How to install C compilers ? (Ubuntu, Mac, Windows) What is C ? C is high-level compared to assembly but low leveled compared to JavaScript. But in general terms C is considered as high level language . So when we talk about c language, we usually hear the following terms Header file Data types Variables Main function Operators Hello World Program ( gateway to programming world  😉 ) Addition/Subtraction program for the basic understanding of Operators What is Header File ? As a beginner I never got a satisfactory answer for the same. In a nutshell, we can say “ It's just like a brain to a body ” ,  It enables us to use the functionality which is pre-implemented by the Developers, just like the brain adds the functionality to other body parts. Header file has a file extension of '.h'  for example “stdio.h” also called standard input-ou

Let’s Get Started with Python

NOTE: The tutorial is aimed at people who have no prior programming experience. If you have previous experience with other programming language (C) and just want to compare the syntax you can jump to this page (link will be updated soon). If you have no compilers installed then you may follow the installation guide here>> How to Install PyCharm? Tutorial00 Statements Let’s start by using  print() , it simply prints whatever you type in double or single codes. As per the tradition let’s print Hello World. In the python file you created type print(“Hello World”) or print(‘Hello World’) as shown below