Question from the Language C - Fundamentals test

Archived

What does the following code return ?

int main() 
{
          int cocacola = 60;
          char sprite  = 3;
          int bottles = cocacola + sprite;
          printf(“We have to bring %d bottles”, bottles); 
          return 0;
}
Author: KahinaStatus: Archived(New question!)Question passed 8 times
0
Community EvaluationsNo one has reviewed this question yet, be the first!