0

What’s the bug in this code? you are making an app to print product labels, which include the name and the price of the product

#include <stdio.h> int main() { printf("Product: LCD Monitor/n"); printf("Price: %f", 49.95); return 0; }

4th Aug 2024, 7:09 PM
Zia
Zia - avatar
1 Respuesta
+ 5
1. It is int, not Int. 2. Use standard ", not the symbol that you use. 3. It is printf, not print.
4th Aug 2024, 7:22 PM
Lisa
Lisa - avatar