Answer Posted / sridhar
Pointers are the variables,which are used to store address of the another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is const and volatile in c?
What is data structure in c programming?
What are enums in c?
How can you pass an array to a function by value?
Do you know what are the properties of union in c?
Why is sizeof () an operator and not a function?
What does int main () mean?
What is string concatenation in c?
What do you mean by invalid pointer arithmetic?
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
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Explain about block scope in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Explain what does a function declared as pascal do differently?
What is a ternary operator in c?