Search:

Type: Posts; User: raj_ksrt

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,495

    what is wrong with the following code?

    Hi all,

    I am getting some garbage values when i executed this program.



    void main()
    {
    float f;
    scanf("%f",&f);
  2. Replies
    6
    Views
    1,720

    problem in windows vista

    Hi all.

    I am developing a RAID configuration tool. As a part of creation of a volume, i am


    allocating some memory dynamically , using malloc() function for n number of pointers and later i...
  3. Replies
    11
    Views
    1,460

    well.. in that case even the statement ...

    well..
    in that case even the statement




    pritnf("%d",3.00);


    should also print some garbage right? but it doesn't...it prints 0.
  4. Replies
    11
    Views
    1,460

    problem with printf

    Hi all..

    why the below program prints some garbage?




    void main()
    {
    printf("%d",3.34);
  5. is the stringizing operator('#' operator) a part of standard C?

    Hi all..


    the operator '#' which is used to replace the actual parameters of a macro with their values , a part of standard C?



    Plz reply..

    thanks in advance.
  6. Is stringizing operator ('#' operator) a part of standard C?

    Hi all ..



    is the operator '#' that is used to expand the macro parameters, a part of standard C or Turbo C?


    plz reply..
    thanks in advance...
  7. Replies
    2
    Views
    1,481

    plz explain the output of the program.

    union a
    {

    int a;
    char ch[2];
    };
    int main()

    {
  8. Replies
    31
    Views
    4,990

    How come argv can be incremented?

    Hi..


    we all very much know the base address of an array cannot be incremented ...

    i mean if i declare something like this,


    char *a[10];
    a++;
Results 1 to 8 of 8