//add ,substact ,multiply ,divide two numbers using switch statement
Saturday, March 25, 2023
add ,substact ,multiply ,divide two numbers using switch statement .
Tuesday, March 21, 2023
find the lcm of any two numbers in c.
//find the lcm of any two numbers
find the hcf of any two numbers in c
//find the hcf of any two numbers
Monday, March 20, 2023
size of integer ,float,character,double data type in c
//size of integer ,float,character,double data type
Sunday, March 19, 2023
print "hallo eworld " without using semi colon (;)
//print "hallo eworld " without using semi colon (;)
"print the fibonacchi series using c'' in c
//print the fibonacchi series using c
"find a year is leap year or not ,using if else statement " in c .
//find a year is leap year or not, using if else statement
"multiplication table for any integer " in c .
//multiplication table for any integer
"print the all character from 'A' to 'Z' using for loop" in c
//print the all character from 'A' to 'Z' using for loop
"find the average of two given numbers " using c .
"find the gretest number between three numbers " in c programming .
//find the gretest number between three numbers
Saturday, March 18, 2023
"print a star pattern with 9 row and 9 column " in c programming .
//print a star pattern with 9 row and 9 column
Friday, March 17, 2023
"find the reverse number using while loop " using c .
//find the reverse number using while loop
"find a number positive or negative using if-else statement " in c
//find a number positive or negative using if-else statement
"programme to check whether a number odd or even using modulo operator " using c
//programme to check whether a number odd or even using modulo operator
"find the value of hcf of two numbers " using c
//find the value of hcf of two numbers
"create "hi I love you c" programme using c " with output
"find the factorial of any positive integer using for loop " in c programming .
//find the factorial of any positive integer using for loop
"find the sum of the series 1^2+3^2+5^2+...+n^2 using for loop" using c .
//find the sum of the series 1^2+3^2+5^2+...+n^2 using for loop
"find the sum of the series 2^2+4^2+6^2+...+n^2 using for loop" in c .
//find the sum of the series 2^2+4^2+6^2+...+n^2 using for loop
"sum of the 1^4+2^4+3^4+...+n^4 using c " by c
//sum of the 1^4+2^4+3^4+...+n^4 using c
"find the sum of the series 1^3+2^3+3^3+...+n^3 number" using c .
//find the sum of the series 1^3+2^3+3^3+...+n^3 number
#include <stdio.h >
print a multiplication table of any integer taking from user
// print a multiplication table of any integer taking from user #include "stdio.h" int main () { int n,mul,i; printf ("...
-
//sum of the 1^4+2^4+3^4+...+n^4 using c #include < stdio.h > int main (){ int i , n , power4 ; printf ( " enter t...
-
//Write a C program to find sum of all odd numbers between 1 to n. #include "stdio.h" int main (){ int num,i,sum; printf ("En...
-
//print all arrey elements #include " stdio.h " int main (){ int rollno [ 5 ] = { 30 , 34 , 45 , 54 , 56 }; printf ...