FORMAT SPECIFIER BEGINNERS

 FORMAT SPECIFIER BEGINNERS 

OUTPUT
#include <stdio.h>

int main()
{
    int a=8;
    float b=7.333;
    printf("THE ENTERED NUMBERS ARE %d and %f "a,b);
    return 0;
}
INPUT
THE ENTERED NUMBERS ARE 8 and 7.333000

Comments