User Profile

Collapse

Profile Sidebar

Collapse
cuteanu
cuteanu
Last Activity: Jul 24 '07, 04:19 PM
Joined: Oct 15 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • thanx cmrhema, that has really helped me
    See more | Go to post

    Leave a comment:


  • cuteanu
    started a topic pointer to char
    in C

    pointer to char

    why is it that when a pointer is pointed to an int, it displays the address while when a pointer is pointed to char there is no output, in the following program:
    int *pptr;
    char *cptr;
    cout<<pptr; //o/p shows the hexadecimal address
    cout<<cptr; // no o/p, it compiles but the output screen is blank

    Please help, this has caused a hindrance in understanding pointers

    Please also refer...
    See more | Go to post

  • cuteanu
    started a topic Difference between datagrid and MS flexgrid

    Difference between datagrid and MS flexgrid

    i am working with the datagrid where i retrieve data from ms -access, how it is different from msflexgid?, is working with flexgrid better than datagrid??????? ??
    See more | Go to post

  • cuteanu
    replied to Retieving Data of MS Access by VB6?
    Ms Access provides the facility to form the primary key, there is a key icon in the tool box, and then in the relationships menu, relation between both the tables can be formed.
    To retrive data into VB, VB should be connected to Ms access, you can do it by many ways.
    See more | Go to post

    Leave a comment:


  • cuteanu
    started a topic using datagrid

    using datagrid

    i am working on a project where i join data from two tables in Ms access XP. I am using VB as the front end. One table has the primary key, hence the record is single and easy to access in VB6, but the other has the foreign key and has multiple records for the same data in the master table. I would like to display these records in a datagrid, how should i go about it, Is there a better technique than using the datagrid. Help!!!!!!!!!!! !
    See more | Go to post

  • cuteanu
    replied to increment operator in C++
    in C
    Thanx,
    but tried many number of times, on different PC's the output remains the same.
    is it something to do with the dynamic declaration of the variable i??
    See more | Go to post

    Leave a comment:


  • cuteanu
    started a topic increment operator in C++
    in C

    increment operator in C++

    how will the following code work
    int a=10;

    int i=a+a+++a++;
    cout<<i;
    the output is shown as 32 .
    while if the code would have been as follows:
    int i, a=10;
    i=a+a+++a++;
    cout<<i;
    the output is 30.
    why is this difference????
    See more | Go to post

  • cuteanu
    started a topic Oracle in VB

    Oracle in VB

    i have created a trigger in Oracle which restricts the date in a certain field to be greater than sysdate. it works when i insert the date through a textbox in VB, but it gives a Vb error, how do i give an user error, i.e how do i refer the Oracle trigger in VB?Please help
    See more | Go to post

  • cuteanu
    replied to Need a few pointers in C
    in C
    try this:

    include- iostream, stdio,string.h,
    char n[50];
    char x='A';
    char s='a';
    int f=0;
    gets(n)
    while (x<='Z' && s<='z')
    {
    for (int y=0;y<=strlen(n );y++)
    {
    if (x==n[y]||s==n[y])
    f++;
    }
    cout<<"frequenc y of "<<x<<"is"< <f;
    f=0;
    x++;
    s++;
    }
    See more | Go to post

    Leave a comment:


  • cuteanu
    replied to Need a few pointers in C
    in C
    Use a for loop from a to z and add up the no of times each alphabet occurs,
    u will need a double for loop
    See more | Go to post

    Leave a comment:


  • cuteanu
    replied to Lcm
    in C
    Thankyou so much Srinivasn
    See more | Go to post

    Leave a comment:


  • cuteanu
    started a topic diff between cout and puts
    in C

    diff between cout and puts

    Please someone could guide me with the difference between cin,gets,getlin e and cout,puts,write .Especially cout and puts gives the same output then how are they different?????
    See more | Go to post

  • cuteanu
    started a topic Lcm
    in C

    Lcm

    plz help.. LCM of 2 numbers using C++
    See more | Go to post

  • cuteanu
    started a topic int v/s float
    in C

    int v/s float

    hello this is anu. i am working with C++ lately, am tired with the confusion with the float type. am using turbo c++. please could someone explain the working of float type.
    See more | Go to post
No activity results to display
Show More
Working...