What is the output of the following program?
#include <stdio.h>
void fun (int a, int b)
{
printf("%d", b);
printf("%d", a);
}
int main()
{
int arr[] = {1, 2, 3, 4);
fun (arr [1], arr [3]);
Heturn 0;
)
Answers
Answered by
1
Answer:
a b c d e f g h I j k l m n o p q r s t u v w X y z
Explanation:
pick one option
Similar questions