#19_(3)Functions in C

 # include <stdio.h>

//With argument and with return value

int mohit(int aint b);

int main()
{
    int c;
    c=mohit(23);      //With argument
    printf("%d"c);   
    return 0;
}

int mohit(int aint b)
{
    return a+b;   //With return value
}

Comments

Popular posts from this blog