Translating C into C++ Code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • baroon
    New Member
    • Jan 2007
    • 12

    Translating C into C++ Code

    What does the following C code translate into in C++?

    what does ( fscanf(in,"%[^.].",&temp1); )
    Last edited by Niheel; Jan 7 '07, 08:29 PM.
  • willakawill
    Top Contributor
    • Oct 2006
    • 1646

    #2
    Originally posted by baroon
    What does the following C code translate into in C++?

    what does ( fscanf(in,"%[^.].",&temp1); )
    cin >> temp1;

    Comment

    Working...