Can a pointer be static?
No Answer is Posted For this Question
Be the First to Post Answer
Do pointers take up memory?
What are global variables and explain how do you declare them?
When is a void pointer used?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
What are the types of unary operators?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
Can include files be nested? How many levels deep can include files be nested?
What is a void pointer in c?
What are structure types in C?
what is the use of operator ^ in C ? and how it works?