Write a C function to search a number in the given list of
numbers. donot use printf and scanf
Answer Posted / gg
Dear... Vignesh... r u tested?
if tested..., on what Compiler...
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Can 'this' pointer by used in the constructor?
while initialization of array why we use a[][2] why not a[2][]...?
What is pointer to pointer in c with example?
What is time complexity c?
What is file in c language?
What is volatile, register definition in C
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
where are auto variables stored? What are the characteristics of an auto variable?
is it possible to create your own header files?
What is meant by gets in c?
Explain what happens if you free a pointer twice?
How can I get back to the interactive keyboard if stdin is redirected?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions