Search:

Type: Posts; User: paushali

Search: Search took 0.00 seconds.

  1. Actually I had also deleted the line containing...

    Actually I had also deleted the line containing stdafx.h but when I tried to run the program I got the following errors:
    1."stdafx.obj : error LNK2005: "public: __thiscall integer::integer(int,int)"...
  2. Thanks! the first solution didn't work But the...

    Thanks! the first solution didn't work But the second one worked...
  3. error C1010: unexpected end of file while looking for precompiled header.

    Hello!I tried out a program on constructors in VC++ 2008 Express Edition and Turbo C++.On compilation both of them showed 0 errors and 0 warnings.But while running the program VC++ showed:
    "fatal...
  4. Replies
    10
    Views
    7,545

    OK I have deleted that goto but still its not...

    OK I have deleted that goto but still its not working.
  5. Replies
    10
    Views
    7,545

    Then what should I do?

    Then what should I do?
  6. Replies
    10
    Views
    7,545

    What is the meaning of: dofactorial();

    What is the meaning of:
    dofactorial();
  7. Replies
    10
    Views
    7,545

    Menu driven program

    I am trying out a menu driven program which has following options:
    1.Factorial of a number
    2.Prime or not
    3.Odd or even
    4.Exit
    Once a menu item is selected the appropriate action should be...
  8. Replies
    3
    Views
    1,416

    #include void main() { int...

    #include <stdio.h>
    void main()
    {
    int ax,by,a,b,c,d,e;
    printf("Enter any two 2-digit integers");
    scanf("&#37;d %d",&ax,&by);
    c=ax*(by-10*b);
    d=ax*((by-y)/10); ...
  9. Replies
    3
    Views
    1,416

    Beginner in C facing problem

    Hi!
    Could you plz help me in the following question:
    "Write an interactive program to demonstrate the process of multiplication.The process should ask the user to enter two 2-digit...
  10. Thread: L value???

    by paushali
    Replies
    8
    Views
    1,557

    the lines in the vicinity of the statement are: ...

    the lines in the vicinity of the statement are:
    int i[12];
    int a[12];
    for (i......)
    a[i]=0;
  11. Thread: L value???

    by paushali
    Replies
    8
    Views
    1,557

    Thanks for your replies.The error message was...

    Thanks for your replies.The error message was shown in the line:
    for(i=0;i<12;i++)
  12. Thread: L value???

    by paushali
    Replies
    8
    Views
    1,557

    L value???

    Hi!
    I have come across a error message while working with arrays.
    The message reads:
    "L value required infunction main()"
    What does it mean?
  13. Replies
    2
    Views
    1,151

    errors troubling me

    hi!

    could you please help me in correcting the error I got in this program?

    #include <stdio.h>
    void main()
    {
    int c , f ,s;
    printf("Enter the class in which the student is classified 1 , 2 ...
Results 1 to 13 of 14