Medium
What does the following code display?
int main()
{
int caramel = 8;
int tagada = 6;
int sweets= caramel + tagada;
printf(“We will eat %f sweets”, sweets);
return 0;
}
Author: KahinaStatus: PublishedQuestion passed 253 times
Edit