Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, March 18, 2015

What is fprintf() function ?



  • It is used to writes a set of data values to a file.
  • It can handle a group of mixed data simultaneously.

Syntax:
     fprintf(file_pointer, “control string”, list);
ex:
     fprintf(fp, “%s %s %d”, id, name, age);

No comments:

Post a Comment