Do you know pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
Are pointers really faster than arrays?
which type of question asked from c / c++ in interview.
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is pointers in c?
What is the difference between malloc() and calloc() function in c language?
What are the preprocessors?
Explain the difference between exit() and _exit() function?
what is pointer ?
10 Answers Kernex Micro Systems,
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
What is actual argument?
what are the interview question's in the language c