Python
April 18, 2025 / April 18, 2025 by Wali Khan | Leave a Comment
Keys=Python Variables Keys=Python,Python programming,Python Variables, Python Data Type Keys=5 Keys=Variables Keys=1
Read more »
Keys=First Python program Keys=Python,Python programming,First Python program, Python Syntax, Python Hello World Keys=5 Keys=Python, Hello World Keys=1
April 16, 2025 / April 18, 2025 by Wali Khan | Leave a Comment
Keys=Python Introduction Keys=Python,Python programming language Keys=5 Keys=What is Python? Keys=1
C Programming
January 4, 2021 / January 5, 2021 by Wali Khan | Leave a Comment
Operators are symbols that tells the compiler to perform specific functions. C language provides the following types of operators:- 1. Arithmetic Operators These operators are used to perform mathematical/arithmetic operations. +(Addition), –(Subtraction), *(Multiplication), /(Division), %(Modul), ++(Increment), —(Decrement) 2. Relational Operators These operators are used to compare values, in condition. ==(Equal to), !=(Not Equal to), >(Greater Than), <(Smaller Than), […]
January 2, 2021 by Wali Khan | Leave a Comment
A storage class represents the location of a variable. We have four different storage classes in a C:- 1. auto It is the default storage class for all local variables. 2. register It is used to define local variables that should be stored in a register instead of RAM. 3. static It is a local variable […]
Derived Data Type:- 1. Pointers It is a variable which stores the address/memory location of another variable. 2. Array An array is a collection of data items, all of the same type, accessed using a common name. 3. Structure It is a user defined data type available in C that allows us to combine data items of different kinds. […]
January 2, 2021 / January 2, 2021 by Wali Khan | Leave a Comment
1.Basic Type These are fundamental data types in C namely integer(int), floating point(float), character(char) and void. 2. Enumerated Type 3. VOID The type void indicates that no value is available. 4. Derived Type This data type includes Pointer, Array, Structure, Union, Function.
auto break case char const continue default do double else enum […]