Printing List of Item

Problem Statement
write a c program to print th following
***LIST OF ITEM***
ITEM PRICE
BOOKS $16.75
PENCIL $15.00


#include<stdio.h>
int main()
{
  printf("***LIST OF ITEMS***\n");
  printf("item    price\n   ");
  printf("BOOKS   $16.75\n");
  printf("PENCIL   $15.00\n");
  return 0;
}

No comments:

Post a Comment