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; }
1 Resposta
+ 5
1. It is int, not Int.
2. Use standard ", not the symbol that you use.
3. It is printf, not print.