Sunday, 5 September 2021

How to add to number using c .......

 #include<stdio.h>

 
int main(){

	int a,b,c;

	printf("Enter value of a: ");

	scanf("%d",&a);

	printf("Enter value of b: ");

	scanf("%d",&b);

	c=a+b;

	printf("sum of your numbers: %d",c);

	return 0;

}





Youtube video s

1 comment:

Program to check whether the reverse string is a palindrome

  # include < stdio.h > # include < string.h > int main ( ) { //declare variables char str1 [ 30 ] ; int i , len...