Tuesday, July 9, 2019

c interview question17

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int x;
    x=func(2,3,5);
    printf("%d\n",x);
    return 0;
}
func(int a ,int b, int c)
{
    return (a,b,c);
}

output:
5

No comments:

Post a Comment

python class topic video