Monday, July 8, 2019

c interview questions13

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


void disp(int, int);
int main()
{
    int x=15;
    float y=290.5;
    disp(x,y) ;
    return 0;
}

void disp(int a, int b)
{
    printf("%d %d\n",a,b);
}


output:
15 290

No comments:

Post a Comment

python class topic video