Search:

Type: Posts; User: san_crazy

Page 1 of 2 1 2

Search: Search took 0.01 seconds; generated 57 minute(s) ago.

  1. Replies
    15
    Views
    11,306

    got some relief after your post Mr MK27 thank...

    got some relief after your post Mr MK27

    thank you and thank to all other members.
  2. Replies
    14
    Views
    2,246

    well.....i have tried it many times in turbo c...

    well.....i have tried it many times in turbo c compiler and didn't get anything you have stated
  3. Replies
    14
    Views
    2,246

    hi elysia, I think you have misunderstood the...

    hi elysia,

    I think you have misunderstood the things

    I have just given a case if a user dont give the locations for all the arguments then what may be happen

    if he write
  4. Replies
    14
    Views
    2,246

    check that again

    check that again
  5. Replies
    14
    Views
    2,246

    hi morgog, I have designed a website to make...

    hi morgog,

    I have designed a website to make understand new comers like you the C/C++ programming language in depth. its totally different from other tutorials YOU might have found somewhere...
  6. Replies
    15
    Views
    11,306

    a new tutorial for c/c++

    hey guys,

    I have designed a website to help new comers understanding the C/C++ programming language in depth. well, the tutorials are being added daily and will be available for you completely...
  7. Replies
    4
    Views
    1,625

    pointer issue

    I have two questions,

    1


    main(){

    int i =257;

    int *iptr =&i;
  8. is it something that you are suggesting for? ...

    is it something that you are suggesting for?

    http://http://www.microsoft.com/downloads/details.aspx?FamilyId=28C97D22-6EB8-4A09-A7F7-F6C7A1F000B5&displaylang=en
  9. I didn't mean the keyword sizeof() by using the...

    I didn't mean the keyword sizeof() by using the same name indeed, it was just an example.
  10. how can I get this virtual machine? is that come...

    how can I get this virtual machine?
    is that come bundled with DDK?

    how can i get it?
  11. thanks anyway. ok, its not a big deal if I...

    thanks anyway.

    ok, its not a big deal if I will have to do lots of practice to gain lots of experience cause I have enough time around 6 months.
    you tell me, what are the things specifically in...
  12. here the problem is, you are copying the string...

    here the problem is, you are copying the string "MyString" to an address having unknown size of memory space. you should either allocate a memory for *pa of size equal to sizeof("MyString")+1( for...
  13. click on the link now, it works

    click on the link now, it works
  14. for wondow xp sp2. well, I found a link but I...

    for wondow xp sp2.

    well, I found a link but I am not sure if it is exactly what I am looking for....
  15. do you know any link where I can download the DDK...

    do you know any link where I can download the DDK from?

    I have googled for that without any success.
  16. as i don't have another system, is there not any...

    as i don't have another system, is there not any way by which I can code and test the driver program in my own system without any single vulnerability?

    would it be dangerous for hardwares also...
  17. I am about to develop drivers for windows as i have to make a project on that.

    I am about to develop drivers for windows as i have to make a project on that.

    I have gone through the resources available at msdn library, but I am still not getting how can I do practice on...
  18. Replies
    2
    Views
    1,552

    it seems your concepts are not clear about...

    it seems your concepts are not clear about pointers, or may be you have copied this code from somewhere else.
    one thing I would suggest you, have well understanding of each line of you code when...
  19. Replies
    15
    Views
    2,764

    scanf() function always put the given value at...

    scanf() function always put the given value at given address not anywhere else.
    here


    scanf("%c",ch);


    after giving the input if you expect from scanf() to put that value in ch variable...
  20. Replies
    11
    Views
    1,824

    use this, ptr =...

    use this,



    ptr = (int**)malloc(row*sizeof(int*));// allocates memory for rows

    for(count=0;count<row;count++)
    ptr[count]= (int*)malloc(column*sizeof(int)); //allocates memory for...
  21. Replies
    16
    Views
    2,809

    ok..i gonna follow you but I ll contact you...

    ok..i gonna follow you

    but I ll contact you very soon

    thanks anyway
  22. Replies
    16
    Views
    2,809

    hi matsp ok....now i have decided that I'll make...

    hi matsp
    ok....now i have decided that I'll make device drivers, the topics that you have suggested are adequate to work on?

    I started with Win 32 API. I still need you suggestion on how can i...
  23. Replies
    16
    Views
    2,809

    you should have guessed that if i have the...

    you should have guessed that if i have the understanding on how can a integer value be made to be and address and further that address assigned to a pointer of that type, then I must also know that...
  24. Replies
    16
    Views
    2,809

    sorry, but it should rather be long ...

    sorry, but it should rather be



    long int intvar=12345600;
    long int ptr = (long int*)intvar;


    now it will point at that address...
    i think, i am making you tired, but i still...
  25. Replies
    16
    Views
    2,809

    long int intvar=12345600; long int ptr =...

    long int intvar=12345600;
    long int ptr = (long int*)&intvar;






    short int bitfield : 3;
    int* pHwReg= new char[bitfield];
Results 1 to 25 of 37
Page 1 of 2 1 2