Search:

Type: Posts; User: mef526; Keyword(s):

Search: Search took 0.00 seconds.

  1. Answers
    9
    Views
    21,604

    Re: what is object based programming?

    VB6 is object based since you cannot create new objects in it, but can use objects made from other languages in it and can inherit from them. VB.Net is object oriented.
  2. Answers
    1
    Views
    3,787

    Re: VB.net code question

    The just in time compiler does a compile as the code is written and can identify errors before a compile is done at the project level. The project level compile is faster because much of the code is...
  3. Answers
    4
    Views
    4,684

    Re: overload a function

    C++ mangles the function name in the object file (after it is compiled) with the function's parameter types but not the return type. Therefore, the linker cannot distinguish between functions with...
  4. Re: How many Case statments can i use in Switch Statement

    No limit is defined in the standard, however, it depends on the size of the int. If int is 32 bits then the limit is 2^32-1. But that is not practical given system resources.
  5. Answers
    7
    Views
    4,212

    Re: sizeof and strlen

    sizeof is done at compile time. strlen is done at runtime.
    char ac[100] = "This is a test";
    int i = sizeof(ac); // i = 100
    int j = strlen(ac); // j = 14
    char *pc = ac;
    int k = sizeof(pc); // k...
  6. Answers
    5
    Views
    3,448

    Re: How size of structure is defined

    The structure is packed. See #pragma pack for details.
  7. Answers
    2
    Views
    3,474

    Re: Differe between static and global parameters

    There is no such thing as a static parameter. There are static functions and static variables, but not static parameters (to functions).
    A static function has visibility only within in the module. A...
  8. Re: Can someone explain me what is dangling pointer in C language?

    A dangling pointer is when you have 1 or more pointers to memory that has been freed, but the pointer(s) still points to the memory block that used to be allocated. Typically the programmer will set...
Results 1 to 8 of 8
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact