Search:

Type: Posts; User: nareshlove

Search: Search took 0.00 seconds.

  1. How to check HDD serial number and model no.??

    Hi guys i want to check serial number and model no of my PC HDD . I have seen some windows API like Createfile( ) , DeviceIOControl( ), but i dont know how to use them. I just want sample code or the...
  2. First initialize a temp and temp1 pointer which...

    First initialize a temp and temp1 pointer which is equal to head pointer just before while loop

    temp=head;



    while(temp->next != NULL)
    {
    temp1=temp;
    temp=temp->next;
  3. Replies
    1
    Views
    731

    compile multiple source fies

    is anyone know how i can compile multiple source file in visual studio 2012 ???
  4. Replies
    7
    Views
    1,093

    thanks everyone now its working....it was not...

    thanks everyone now its working....it was not working because of getch() function it was needed two enter for exit...
  5. Replies
    7
    Views
    1,093

    not working dude...

    not working dude...
  6. Replies
    7
    Views
    1,093

    how to stop reading char???

    Hello everybody i m using visual studio 2012.....in below code i m writing data in to a test.txt file but i dont know with which key file stop accepting char...i tried ctrl+z and ctrl+d but not...
  7. Replies
    2
    Views
    1,433

    Debug assertion failed error

    i m using visual studio 2012 and i pass three command line arguments as 10 20 30 and when i m compile the program get error.....need help


    #include<stdio.h>
    #include<conio.h>
    #include<stdlib.h>...
  8. Replies
    7
    Views
    2,680

    is anyone here can help me to understand...

    is anyone here can help me to understand debugger...
  9. Replies
    7
    Views
    2,680

    the code is running fine ...no problem with code...

    the code is running fine ...no problem with code but why its show error when i take help of debugger.....
  10. Replies
    7
    Views
    2,680

    a syntax error in expression near "if"

    hey i m using code::blocks for c programming and when i take help of debugger in below code it show ..
    a syntax error in expression near "if"..
    i m just checking debugger ...i m begginer .....

    ...
  11. dude temp1 can never be zero because i initialize...

    dude temp1 can never be zero because i initialize temp1=1....
  12. dude i m using logic here let take example with...

    dude i m using logic here
    let take example with num=456
    and i need at output is four five six
    first i divide 456/100=4 then print
    now i need 56/10=5
    thats why i use 456%100=56
    after that agai...
  13. i cannot use do while loop because this is my...

    i cannot use do while loop because this is my assignment using while loop......can anyone give me solution of this error..
  14. Floating point exception( core dump) error in my program..

    i m stuck at one problem...this is the program to print the given integer in words...plzz hep me to solve,,,,



    #include<stdio.h>
    main()
    {
    int num,temp1,temp2,cnt,temp3,temp4,a;
    ...
Results 1 to 14 of 14