Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, March 18, 2015

What is getw() function ?



  • getw() used to reads a integer from a file.
  • It read only one value at a time.
  • It is integer oriented function.
  • It is similar to getc().
  • It deals with only integer data.
 Ex:
                while (( n = getw ( fp )) != EOF )
                {
                                printf (“ %d  \t “, n);
                }

1 comment: