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
What is the acronym for ansi?
Why should I prototype a function?
Which is the memory area not included in C program? give the reason
What is the purpose of 'register' keyword in c language?
Write a program to print fibonacci series without using recursion?
provide an example of the Group by clause, when would you use this clause
Explain the concept and use of type void.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Why is struct padding needed?
Explain why c is faster than c++?
Is calloc better than malloc?
Why c is procedure oriented?
Explain what are header files and explain what are its uses in c programming?
How do you construct an increment statement or decrement statement in C?
What is the use of putchar function?