write a program to search for an element in a given array.
If the array was found then display its position otherwise
display appropriate message in c language
Answer Posted / all
#include<stdio.h>
| Is This Answer Correct ? | 11 Yes | 30 No |
Post New Answer View All Answers
Do you have any idea how to compare array with pointer in c?
When should volatile modifier be used?
What is the return type of sizeof?
How can I open files mentioned on the command line, and parse option flags?
Which header file is essential for using strcmp function?
What are keywords in c with examples?
What is main function in c?
Explain what’s a signal? Explain what do I use signals for?
Which is better malloc or calloc?
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
How do you print only part of a string?
why return type of main is not necessary in linux
Can the curly brackets { } be used to enclose a single line of code?
Combinations of fibanocci prime series
What is a sequential access file?