Top 100+ questions in Technology

0 votes
    Explain the difference between *ptr++ and ++*ptr same?...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    Are the expressions *++ptr and ++*ptr same?...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    What is the difference between a macro and a function?...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    What is a difference between unsigned int and signed int in C?...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    What are the uses of the keyword static?...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    What is the difference between global and static global variables?...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    Which type of pointer is the most convenient way of storing the raw address in C programming?...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    What is the output of the below program? #include int main() { printf("%u",sizeof(NULL)); return 0; }...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    ‘ptr’ is a pointer to a data type. The expression *ptr++ is evaluated as?...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    When should we use pointers in a C program?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    Can we have a volatile pointer?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the use of a double pointer (pointer to pointer) in C?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the return value of malloc (0)?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the memory leak in C?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What are the advantages of using an array of pointers to string instead of an array of strings?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    Are the expressions *ptr ++ and ++*ptr same ?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    Is the allocated space within a function automatically deallocated when the function returns?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is an array of pointers?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is a normalized pointer, how do we normalize a pointer?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the difference between pointer to an array and array of pointers?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    Can we perform arithmetic operation on pointers?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    Where can the function pointers be used?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    How to declare a pointer to a function in C?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is a Function Pointer?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the cause of the stack overflow?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the stack overflow?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What are the common causes of the segmentation fault in C?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the difference between Segmentation fault and Bus error?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is segmentation fault in C?...
asked Jan 22, 2021 in Technology by JackTerrance
0 votes
    What is the address of operator ( &)?...
asked Jan 22, 2021 in Technology by JackTerrance
...