Answer Posted / anantha sharma
Pointer is a variable that holds address of a memory location
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What does void main return?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Describe explain how arrays can be passed to a user defined function
What is a lookup table in c?
What are two dimensional arrays alternatively called as?
By using C language input a date into it and if it is right?
Should a function contain a return statement if it does not return a value?
Can true be a variable name in c?
What are the different types of objects used in c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is pivot in c?
What do you mean by dynamic memory allocation in c? What functions are used?
Explain what is the advantage of a random access file?
In C, What is the #line used for?