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 Settin...

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

101/Introduction to C Language - part 2

To get an overview of C language read:  101/Introduction to C - part 1 Following are some basic topics which we will cover in this tutorial: How to take input from the users ( Managing Input and Output operation). How to take decisions (Decision making and Branching). ie. If-else and nested If-else Looping:  for loop, nested for loop, while/do while loop. Arrays. How to take input from the user in C Following are the two ways to take input from the user Using normal input syntax Taking input as command line argument 1. Using normal input syntax In C programming, scanf() function is used to read character, string,  numeric data from keyboard. It uses format specifier as parameter to take type of input like ‘ %s ’ for string , ‘ %d ’ for interger , ‘%c ’ for character . Example:  #include<stdio.h> int main() { int i; printf("Enter any Number:"); //taking Integer input from the user and storing at the address of v...