Akshay more
information about date of result 2nd year D pharm
Akshay more
void main() { int a,b, result; clrscr(); printf("\n\n\t\tenter any two nos.."); scanf("d",&a,&b); if(a==0b==0) printf("multiplication of %d and %d is zero",a,b); else { result=a*b; printf("multiplication of %d and %d is %d",a,b,result); } getch(); }
cheese :D
tomorrow 3pm
When you don't get enough vitamin D you can get sick easier.
The D-Day result was that the Allied armies carried out a successful invasion and went on to win the war in Europe less than a year later.
date of d pharmacy result with Bombay university
#include<stdio.h> #include<conio.h> void main() { int a,b,c; int Result; printf("enter the value of a:"); scanf("%d", &a); printf("enter the value of b"); scanf("%d", &b); printf("enter the value of c"); scanf("%d", &c); Result=a*b*c; printf("%d", Result); getch(); }
D. Mutation
#include<stdio.h> void main() { int num1, num2,res; char ch; printf("\n Enter the 1st operand"); scanf("%d",&num1); printf("\n Enter the operator"); scanf("%c",&ch); printf("\n Enter the 2nd operand"); scanf("%d",&num2); switch(ch) { case '+' :res=num1+num2; break; case '-' :res=num1-num2; break; case '*' :res=num1*num2; break; case '/' :res=num1/num2; break; } printf("\n The result of %d %d %d is =%d",num1,ch,num2,res); }
yes