#include int main() { int amt, total; printf(“Input the amount: “); scanf(“%d”,&amt); total = (int)amt/100; printf(“There are: “); printf(“\n%d Note(s) of 100.00\n”, total); amt =
Archives: Answers
Answer
Write a C program to print your name, date of birth. and mobile number.
Code #include int main() { printf(“Name : John Doen”); printf(“DOB : Jan 10, 1990\n”); printf(“Mobile : 12-1234567890\n”); return(0); }