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 / satys
we can use any variable in the place of temp
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Can you mix old-style and new-style function syntax?
What is an operator?
What is a header file?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
How do you construct an increment statement or decrement statement in C?
Do array subscripts always start with zero?
What is double pointer?
Explain what is dynamic data structure?
Is fortran still used in 2018?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Explain how can you tell whether a program was compiled using c versus c++?
What is string concatenation in c?