Monday, July 8, 2019

c interview questions4

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

void main()
{
    int x=6;
    x=func();
    printf("%d\n",x);
}

int func (int a)
{
    a=a*2;
}


output ::
1

No comments:

Post a Comment

python class topic video