What is C# ? Learn C# എന്താണ് C#? Tutorial 1 Malayalam | Mallu Programmer

Опубликовано: 30 Июнь 2026
на канале: Openvibes by Safeer
420
10

What is C# ? Learn C# in Malayalam Tutorial 1
What is C# ? Learn C# എന്താണ് C#? Tutorial 1 | Mallu Programmer

First Video From Mallu Programmer,
What is C#
C-SHARP (C#) is a general purpose, multi-paradigm programming language developed by Microsoft that runs on the .NET Framework. C# is widely used for building mobile applications, games and windows applications.


C# Variables
A variable is a name given to a storage area that is used to store values of various data types. Each variable in C# needs to have a specific type, which determines the size and layout of the variable's memory.


C# Operators
Arithmetic Operators
These are operators used for performing mathematic operations on numbers. Below is the list of operators available in C#.


Relational Operators
These are operators used for performing Relational operations on numbers. Below is the list of relational operators available in C#.


Logical Operators
These are operators used for performing Logical operations on values. Below is the list of operators available in C#.
&& This is the Logical AND operator. If both the operands are true, then condition becomes true.
|| This is the Logical OR operator. If any of the operands are true, then condition becomes true.
! This is the Logical NOT operator.