484 views
3 votes
3 votes

1 Answer

Best answer
4 votes
4 votes

I hope i could make this clear.

selected by

Related questions

0 votes
0 votes
1 answer
1
2 votes
2 votes
1 answer
2
0 votes
0 votes
0 answers
3
register_user_19 asked Jan 10, 2019
410 views
What is the output of the following code ?void f(int a, int b){printf(“%d”,a+b);}void main(){f((2,3),4);}675None of these
0 votes
0 votes
0 answers
4
sushmita asked Dec 3, 2017
1,352 views
static char hello[]='hello'; printf("%s",hello);The output will be same as-puts("hello");puts(hello);printf("%s", "hello");puts("hello\n");Answer is 1,2 and 3.Can anyone ...