Search:

Type: Posts; User: sunnypalsingh

Page 1 of 7 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    3,118

    Europe Vs Italy

    http://www.infonegocio.com/xeron/bruno/italy.html
  2. Replies
    2
    Views
    2,505

    ProtoPage

    http://www.protopage.com/v2

    Here u can customize ur favourite links in to one webpage and set it as hompepage.
  3. Replies
    3
    Views
    2,825

    Dating a Hacker

    Excellent guide for women interested in dating a hacker.
    http://www.grrl.com/hackerboy.html
  4. Replies
    4
    Views
    2,109

    http://www.cprogramming.com/tutorial/lesson5.html

    http://www.cprogramming.com/tutorial/lesson5.html
  5. Replies
    6
    Views
    3,615

    L-values are values that have addresses, meaning...

    L-values are values that have addresses, meaning they are variables or dereferenced references to a certain place.
    R-value is either l-value or non-l-value — a term only used to distinguish from...
  6. Replies
    6
    Views
    1,177

    I hope u are doing something like this ...

    I hope u are doing something like this


    #include<iostream>
    #include<string>
    using std::string;
    using std::cout;

    int main()
    {
  7. Replies
    10
    Views
    1,513

    I would say You have to play with it to see what...

    I would say You have to play with it to see what is best ;)
  8. Replies
    7
    Views
    20,932

    atof is been subsumed by strtod but have been...

    atof is been subsumed by strtod but have been retained because they are used extensively in existing code. They are less reliable, but may be faster if the argument is known to be in a valid range....
  9. Replies
    7
    Views
    970

    some scenarios???

    some scenarios???
  10. Replies
    1
    Views
    996

    __box problem

    I am reading into Managed C++, came across this code

    #using <mscorlib.dll>
    using namespace System;

    int main()
    {
    double salary = 12.84;
    Console::Write("Salary: ");...
  11. Replies
    2
    Views
    1,150

    use %f instead of %d

    use %f instead of %d
  12. Replies
    2
    Views
    1,214

    For C++...

    For C++
    http://public.research.att.com/~bs/homepage.html
    For HTML
    http://www.w3schools.com/
  13. Replies
    2
    Views
    1,124

    The code seems to work on my end

    The code seems to work on my end
  14. Replies
    6
    Views
    5,415

    Stupid Question

    Stupid Question
  15. Replies
    5
    Views
    1,051

    Do this Measurements *Measure=new...

    Do this


    Measurements *Measure=new Measurements;
  16. Replies
    5
    Views
    1,649

    I came across this...

    I came across this
    http://support.microsoft.com/default.aspx?scid=kb;en-us;23976
  17. Replies
    3
    Views
    1,106

    go for dynamic memory allocation

    go for dynamic memory allocation
  18. Replies
    1
    Views
    1,481

    printf("%.2f",floatingpointnumber);

    printf("%.2f",floatingpointnumber);
  19. Replies
    3
    Views
    1,304

    :eek:

    :eek:
  20. Replies
    5
    Views
    1,167

    Don't know if its the ideal solution...but it...

    Don't know if its the ideal solution...but it works


    #include <stdio.h>
    int main() {
    int number;
    printf("Enter an integer:");

    if (scanf("%[0-9]d", &number)!=1)...
  21. Replies
    3
    Views
    1,600

    There's tolower function...you can make use of...

    There's tolower function...you can make use of it....
    Prototype:
    int tolower( int c );
    header file required
    <cstdlib> or <ctype>
  22. Replies
    7
    Views
    1,318

    Just by a little search I found a method which...

    Just by a little search I found a method which works in Windows NT as well as the MS-DOS and Windows operating systems. Here it is


    #include <stdio.h>
    int main()
    {
    FILE *stream;

    ...
  23. Replies
    3
    Views
    891

    In DOS and Windows, a batch file is a text file...

    In DOS and Windows, a batch file is a text file with a series of commands intended to be executed by the command interpreter. When the batch file is run, the shell program (usually command.com or...
  24. Replies
    7
    Views
    1,318

    See This #include int main() {...

    See This

    #include<stdio.h>
    int main()
    {
    char sample[]="Go To Printer";
    fprintf(stdprn,"\n%s\n",sample);
    return 0;
    }
    This method works only in the MS-DOS operating system because the...
  25. Replies
    3
    Views
    891

    Try looking at this...

    Try looking at this
Results 1 to 25 of 163
Page 1 of 7 1 2 3 4