Author name: vasu

Operators in C

Operators in C are used to perform some operations on variables and constant values. See the example below #include <stdio.h> int main(){ int a = 4, b = 5, c; c = a + b; return 0; } In the above example, we are using the addition operator(+) to add […]

Operators in C Read More »

Comments in C

A comment in C is a text that is ignored by the compiler. Let us see how we can use comments in a C program. There are two types of comments in C: Single line comments Multi line comments Single line comments A single line comment can be made by

Comments in C Read More »

What is machine learning?

What is Machine Learning?

Machine learning is the branch of computer science that focuses on making computers learn by past experiences and by using a set of data. It is a subset of Artificial intelligence. This is done by designing algorithms that can make computers imitate the way humans learn. Machine learning algorithms make a

What is Machine Learning? Read More »