Tuples in Python
Welcome! This post will teach you about the tuples in the Python Programming Language. By the end of this post, you’ll know the basics tuple… Read More »Tuples in Python
Welcome! This post will teach you about the tuples in the Python Programming Language. By the end of this post, you’ll know the basics tuple… Read More »Tuples in Python
Welcome! This notebook will teach you the basics of the Python programming language. Although the information presented here is quite basic, it is an important… Read More »Basics in Python
Welcome! This notebook will teach you about strings and their operations in the Python Programming Language. By the end of this notebook, you’ll know the… Read More »Strings in Python
Conditional Statements in C programming are used to make decisions based on the conditions. These conditions are specified by a set of conditional statements having… Read More »Conditional Statements in C
In C programming, Strings are defined as an array of characters or a sequence of characters terminated with a null character ‘\0‘. When the compiler… Read More »Strings in C
You may encounter situations, when a block of code needs to be executed several number of times. In general, statements are executed sequentially: The first… Read More »Loops in C
The number systems give us different ways to represent numbers. It defines a set of values to represent a quantity. The systems that are interesting… Read More »Number Systems – Binary, Hex, Decimal
Questionnaire for C programming Programs based on If-Else C program to find the greatest number among three numbers. C program to find out whether a… Read More »Practice programs for C language
Practice programs on Pointers 1. Program in C to demonstrate how to handle the pointers in the program: #include <stdio.h> int main() { int* ab;… Read More »C programs on Pointers
Practice programs on Structures 1. Program to Store Information of a Student Using Structure: #include <stdio.h> struct student { char name[50]; int roll; float marks;… Read More »C programs on Structures