Monday, July 8, 2019

c interview question7

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

int main()
{
    int s;
    s=func(2,3,6);
    printf("%d\n",s);
    return 0;
}


int func (int a, int b)
{
    return (a+b);

}

output::
5

No comments:

Post a Comment

python class topic video