Design a program using an array that searches a number if it
is found on the list of the given input numbers and locate
its exact location in the list.
Answer Posted / vignesh1988i
small mistake in above program.... in last printf pl. change
*(*(ptr+i)) as (*(ptr+i))
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Write a program for Overriding.
Explain how can a program be made to print the line number where an error occurs?
What are the types of pointers?
Can math operations be performed on a void pointer?
Explain what is meant by high-order and low-order bytes?
Explain setjmp()?
How can you check to see whether a symbol is defined?
Why c language is called c?
Why void main is used in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What are the 5 types of inheritance in c ++?
if p is a string contained in a string?
In C language, a variable name cannot contain?
What is meant by 'bit masking'?
What is a keyword?