write the program to print an integer representing the number of desktop products among the given sales data in c program
Answers
Answered by
5
Answer:
#include <stdio.h>
int main(void)
{
int num;
scanf("%i" , &num);
printf("Number of desktops is: %i", num);
}
As per the information provided in the context thats the most suitable solution.
Mark as brainliest only if it helped you!
Answered by
5
Explanation:
the producr IDs of the desktop products in the sales data are (v,k,l)
so the output is 3
Similar questions