/* Sum of Two Numbers */
#include<stdio.h>int main()
{
int a,b,sum;
printf("Type your frist value to add : ");
scanf("%d",&a);
printf("Type your second value to add : ");
scanf("%d",&b);
sum =a+b;
printf("Total of your value = %d",sum);
return 0;
}
#include<stdio.h> int main() { char c; printf("Enter a character to know whether it is vowel or not\n"); scanf("...
No comments:
Post a Comment