Consider the following C code snippet:
#include <stdio.h>
int main() {
printf("%s", 5 + "Facsimile");
اسه
What will the code print?
Answers
Answered by
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
0
Answer:
output of this code is : - mile
Similar questions