CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Problem!!!

  1. #1
    Join Date
    May 1999
    Posts
    20

    Problem!!!

    how can i convert a float to a double with out a warning..

    thx



  2. #2
    Guest

    Re: Problem!!!

    double dVar1;
    float fVar2;

    dVar1 =(double)fVar2;

    no warning warranty!!!

    Marc
    Industrial Software Developer


  3. #3
    Join Date
    May 1999
    Posts
    28

    Re: Problem!!!

    read yer book on type casting


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured