What is a pointer in c?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
A pointer is a variable that stores the memory address of another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
A pointer is a variable that stores the memory address of another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
A pointer is a variable that stores the memory address of another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
What is structure packing ?
how the compiler treats any volatile variable?Explain with example.
#define d 10+10 main() { printf("%d",d*d); }
will u give me old quesrion papers for aptitude for L & t info tech?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
In C programming, what command or code can be used to determine if a number of odd or even?
How does free() know explain how much memory to release?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
write a own function to compare two strings with out using stringcomparition function?
Can true be a variable name in c?