Medium
What does the following code return ?
#include <stdio.h>
int main()
{
int cocacola = 60;
char sprite = 3;
int bottles = cocacola + sprite;
printf("We have to bring %d bottles", bottles);
return 0;
}
Edit