Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { int no […]
Read moreTag: c programming tutorial
Write a Program to swap the values of two variables.
Write a Program to swap the values of two variables. #include <stdio.h> #include <conio.h> int main () { int a,b,t ; […]
Read moreWrite a Program to convet temperature from degree centigrade to farenheit. F = C * (9/5) + 32
Write a Program to convet temperature from degree centigrade to farenheit. F = C * (9/5) + 32 #include <stdio.h> #include <conio.h> int […]
Read moreWrite a Program to compute the addition , subtraction , product , quotent and remainder of two given numbers.
Write a Program to compute the addition , subtraction , product , quotent and remainder of two given numbers. Write a Program to compute the […]
Read moreProgram to Find Quotient and Remainder in C++
Program to Find Quotient and Remainder in C++ Program to Find Quotient and Remainder in C++ #include <iostream> using namespace std; int main() […]
Read moreFunction Overloading in C++
Function Overloading in C++ Function Overloading in C++ Function overloading is a feature of object-oriented programming where two or more functions can have the […]
Read moreOOPs Concepts in C ++
OOPs Concepts in C++ OOPs Concepts in C++ OOPs stands for Object Oriented Programming . An object oriented programming language uses object in its […]
Read moreMultiple of Matrix in c
Multiple of Matrix in c Multiple of Matrix in c #include <stdio.h> // Function to multiply two matrices void multiplyMatrices(int firstMatrix[10][10], int secondMatrix[10][10], int […]
Read moreC notes from scratch to advance | Conditional Instructions in C | #C
C notes from scratch to advance | Conditional Instructions in C | #C C is a programming language as we have discussed earlier about languages […]
Read moreC notes from scratch to advance | Instructions and operators in C | #C
C notes from scratch to advance | Instructions and operators in C | #C C is a programming language as we have discussed earlier about […]
Read more
Recent Comments