73.
What will be the output of the following C code?
#include <stdio.h>
void inline func1(int a, int b) 
{
    printf ("a=%d and b=%d\n", a, b);
}
int inline func2(int x)
{
    return x*x;
}
int main()
{
    int tmp;
    func1(1,4);
    tmp = func2(6);
    printf("square val=%d\n", tmp);
    return 0;
}

76.
How many times is 'a' printed when the following C code is executed?
#include<stdio.h>
main()
{
    int a;
    a=f1(10);
    printf("%d",a);
}
f1(int b)
{
    if(b==0)
        return 0;
    else
    {
        printf("a");
        f1(b--);
    }
}

77.
In a signed integer, the sign is represented by . . . . . . . .

79.
Comment on the output of following C code.
#include <stdio.h>
main()
{
    char *p = 0;
    *p = 'a';
    printf("value in pointer p is %c\n", *p);
}