Computer Science, asked by vamsimedisetty1234, 7 months ago

Consider the following C code snippet:
#include <stdio.h>
int main() {
printf("%s", 5 + "Facsimile");
اسه
What will the code print?​

Answers

Answered by sg249344
22

It will give an error because you have not closed main()

so your code should be

#include <stdio.h>

int main() {

printf("%s", 5 + "Facsimile");

printf("%s", 5 + "Facsimile");}

Please mark me as the brainliest

Answered by slakshmisvp
0

Answer:

output of this code is : - mile

Similar questions