बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

C Program to display size,minimum & maximum capacity of int and float using , use of Limit.h header File in c

c program to display pyramid,c program to display pyramid using *,c program to display pyramid pattern,c program to display pyramid of stars,c program to display pyramid of numbers,c program to display name,c program to display name and age,c program to display name and address


C Program  to display size,minimum & maximum capacity of int and float using , 

use of Limit.h header File in c



//#include
void main()
{
    int var1;
    float var2;
    clrscr();
    printf("Size of Integer is=%d byte",sizeof(var1));
    printf("\n %d",INT_MIN);
    prittf("\n %d",INT_MAX);
    printf("\n\nSize of Float is=%d byte",sizeof(var2));
    printf("\n %ld",FLOAT_MIN);
   prittf("\n %ld",FLOAT_MAX);

    getch();
}


C Program  to display size,minimum & maximum capacity of int and float, use of Limit.h header File

c program to display pyramid,c program to display pyramid using *,c program to display pyramid pattern,c program to display pyramid of stars,c program to display pyramid of numbers,c program to display name,c program to display name and age,c program to display name and address


C Program example List