Search:

Type: Posts; User: sunnypalsingh

Page 1 of 7 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    3,001

    Europe Vs Italy

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

    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,748

    Dating a Hacker

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

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

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

    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,162

    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,494

    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,829

    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
    959

    some scenarios???

    some scenarios???
  10. Replies
    1
    Views
    988

    __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,205

    For C++...

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

    The code seems to work on my end

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

    Stupid Question

    Stupid Question
  15. Replies
    5
    Views
    1,037

    Do this Measurements *Measure=new...

    Do this


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

    I came across this...

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

    go for dynamic memory allocation

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

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

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

    :eek:

    :eek:
  20. Replies
    5
    Views
    1,160

    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,578

    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,298

    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
    879

    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,298

    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
    879

    Try looking at this...

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