Safcode Institute by Sir Safder





  • Format Specifier in C

    The format specifier is used when we take input from user
    or print variable value. format specifier mostly use when
    we use scanf() or printf() function. Using format Specifier
    our compiler understand which type of data are taking input
    or print using scanf() or printf() function.
    
    Here some examples of format specifier:
    %c use for char
    %d use for int
    %f use for float
    %s use for string



  • You Can Also Watch Our Tutorial