Are pointers integers in c?
Answer / Ratan Singh
No, a pointer is not an integer. While a pointer variable stores the memory address of another variable as an integer value, it has its own data type (e.g., int*, char*, etc.) and should be treated differently from integer variables.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain about the constants which help in debugging?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
printf("%d",(printf("Hello")); What it returns?
What is a program flowchart?
Explain the difference between the local variable and global variable in c?
What is a lvalue
Does c have circular shift operators?
What is memcpy() function?
Explain the difference between fopen() and freopen().
How many levels of indirection in pointers can you have in a single declaration?
1 Answers Agilent, ZS Associates,
Difference between Shallow copy and Deep copy?
What is maximum size of array in c?