-4

I can't find the full name (expanded meaningful name) of the functions printf(), scanf(), seekg().

These guys seem to be like below ▼

printf

  • print format
  • print format string
  • print function

scanf

  • scan format
  • scan format string
  • scan function

seekg

  • seekGlobalFileStreamCursor (What the..?)

Can you say where the names come from, or what they mean?

Killzone Kid
  • 6,171
  • 3
  • 17
  • 37
Semalion K
  • 67
  • 1

1 Answers1

8

printf is an abbreviation for "print formatted"

scanf is an abbreviation for "scan formatted"

seekg is an abbreviation for "seek the get (read) pointer"... as opposed to seekp, which manages the put (write) pointer.

Drew Dormann
  • 59,987
  • 13
  • 123
  • 180