Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { int no […]
Read moreMonth: October 2024
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 more
Recent Comments