Library and IDE in C Programming Language In this article, I am going to give a brief introduction to Library and IDE in C Programming Language. Please read our previous article where we discussed the History of C Programming Language. Before going to write the first program, we need to understand twoContinue Reading

History of C Programming Language In this article, I am going to discuss the History of C Programming Language. Please read our previous article where we give a brief introduction to C Programming Language. At the end of this article, you will understand the history and evolution of the C Programming LanguageContinue Reading

Introduction to C Programming Language In this article, I am going to give you a brief introduction to the C Programming Language. Please read our previous article where we discussed Platform Dependency in C Language. As part of this article, I am going to discuss the following pointers in detail. What isContinue Reading

Platform Dependency in C Language In this article, I am going to give a brief about platform dependency in the C language, and why C applications are run on a single platform. Please read our previous article, where we discussed the different types of applications, we can develop using different programming languages.Continue Reading

Different Types of Applications In this article, I am going to give a brief introduction to the types of applications, mainly how many types of applications we can develop using different programming languages. Types of Applications There are 2 types of applications: What are standalone apps? The application we are installingContinue Reading

Introduction to Django sessions Django has a session framework that supports both anonymous and user sessions. Django uses the session middleware to send and receive cookies. The following picture illustrates how the Django sessions work: When a web browser makes the first HTTP request to the web server, the sessionContinue Reading

Introduction to HTTP cookies When a web server interacts with many different browsers at the same time, it needs to identify which browser a specific request came from. Because the HTTP request/response is stateless, all web browsers look identical. To identify the web browsers, the web server uses cookies. Technically,Continue Reading

Introduction to the Django Group By The SQL GROUP BY clause groups the rows returned by a query into groups. Typically, you use aggregate functions like count, min, max, avg, and sum with the GROUP BY clause to return an aggregated value for each group. Here’s the basic usage of the GROUP BY clause in a SELECT statement: SELECT column_1, AGGREGATE(column_2)Continue Reading