#19_(4)Functions in C

 # include <stdio.h>

//Without argument without return value

void mohit()                //Without return value
{
    int n;
    printf("Enter a number \n");
    scanf("%d", &n);
    for (int i = 0i < ni++)
    {
        printf("%c"'*');
    }
    
}

void main()
{
    mohit();            //Without argument
 
}

Comments

Popular posts from this blog