Search:

Type: Posts; User: Brij

Search: Search took 0.01 seconds.

  1. Thread: divisibility by 3

    by Brij
    Replies
    21
    Views
    5,155

    yes right .. but still i have to check the...

    yes right .. but still i have to check the divisibility when one digit is left .. as you said ...

    so the question is still same how to divide the number or check divisibility of a number by 3 ...
  2. Thread: divisibility by 3

    by Brij
    Replies
    21
    Views
    5,155

    divisibility by 3

    can we check the divisibility of a given number by 3 withoutusing operators like '/' or '%'.
    I want the efficient solution to this problem ..

    can someone help ??
  3. Replies
    1
    Views
    1,469

    finding out a string from a text file

    Hi

    Problem :-

    finding out a string from a text file ( only in c/c++)

    my code is taking timecomplexity as o(mn) in worst case.
    where m is the size of the string and n is the size of the...
  4. Replies
    11
    Views
    2,515

    Hi Vart can u give the link to download this...

    Hi Vart

    can u give the link to download this ebook
    Jeffrey Richter - "Programming Applications for Microsoft Windows" forth edition

    i tried on microsoft site . but couldnt get it .

    thanx
  5. Replies
    11
    Views
    2,515

    hii thanx to all for ur kind help . Code is...

    hii

    thanx to all for ur kind help . Code is running fine now and message box is also appearing.

    i dont have much experience on dll programming .
    can anyone suggest some good books or...
  6. Replies
    11
    Views
    2,515

    hii

    i have tried both the changes as suggested bu u guys . but still i dont find any change when i execute the program .
  7. Replies
    11
    Views
    2,515

    problem- injection dll thru remotethread

    I am trying to inject Dll throught CreateRemoteThread.
    I am trying to inject it into notepad.exe whose pid is 1616

    My code of injector program is




    int main()
    {
  8. Replies
    9
    Views
    1,674

    hi bubba .... sorry can not make out anything...

    hi bubba ....

    sorry can not make out anything from ur reply .............
    are u questioning me about the order of parameters?

    as far as my code is concerned .......
    this code is equalant to ...
  9. Replies
    9
    Views
    1,674

    assembly code in c++ program

    #include<iostream.h>
    #include<stdio.h>
    main()
    {
    __asm
    {
    push 10
    push 20
    }
    abc();
  10. Replies
    6
    Views
    9,439

    To Manorator I think i have calculated the...

    To Manorator

    I think i have calculated the RVA correctly ...........
    i also refered a book on rootkit and they also have done it in the same way ..
  11. Replies
    6
    Views
    9,439

    #include #include ...

    #include <windows.h>
    #include <stdio.h>
    #include <conio.h>
    #include<winnt.h>
    #define BUF_SIZE 256

    LPCTSTR MapFileRead(LPCTSTR szFileName, size_t * lpcbSize)
    {

    /* variable declare section...
  12. Replies
    6
    Views
    9,439

    problem while reading inport table

    #include <windows.h>
    #include <stdio.h>



    #include <conio.h>
    #include<winnt.h>

    #define BUF_SIZE 256
    TCHAR szName[]=TEXT("process.c");
  13. Replies
    5
    Views
    4,210

    thanx path to calc.exe was incorrect

    thanx
    path to calc.exe was incorrect
  14. Replies
    5
    Views
    4,210

    OPEN_EXISTING -> opens a file if it exists ... ...

    OPEN_EXISTING -> opens a file if it exists ...
    otherwise CreateFile will fail ..


    OPEN_ALWAYS -> opens a file if it exists
    ...
  15. Replies
    5
    Views
    4,210

    CreateFile function

    szFileName contains calc.exe

    hFile = CreateFile(szFileName, GENERIC_READ, FILE_SHARE_READ, NULL,
    OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);

    dwFileSize = GetFileSize(hFile,...
  16. Replies
    9
    Views
    3,920

    #include #include ...

    #include <windows.h>
    #include <stdio.h>


    //#include <windows.h>
    //#include <stdio.h>
    #include <conio.h>
    #include<winnt.h>

    #define BUF_SIZE 256
  17. Replies
    9
    Views
    3,920

    could u please explain how to open process.c as a...

    could u please explain how to open process.c as a PE executable .
    actually i am new to windows programming
  18. Replies
    9
    Views
    3,920

    hii i should use %lu in place of %d .. but...

    hii

    i should use %lu in place of %d .. but even after using it i am still getting 0.
  19. Replies
    9
    Views
    3,920

    problem regrading PIMAGE_DOS_HEADER

    My program code is given bellow.....




    #include <windows.h>
    #include <stdio.h>
    #include <conio.h>
    #include<winnt.h>
Results 1 to 19 of 20