13.(C) Printing the value of d if d=v*t

 #include<stdio.h>


int main(){
    int v,t,d;
    printf("Enter the value of v,t");
    scanf("%d%d",&v,&t);
    d=v*t;
    printf("The value of d is %d",d);
    return 0;
}

Comments