who is the editor of 'pokemon'?
Answer / saiesh singh
a). M F Hussain b) shuncho yankichi c) santoshi hiryana
| Is This Answer Correct ? | 2 Yes | 1 No |
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
write a program to insert an element at the specified position in the given array in c language
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is size of union in c?
what is difference between ANSI structure and C99 Structure?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
Explain what are run-time errors?
what is difference between C and C++
How does C++ help with the tradeoff of safety vs. usability?
Write a program to check whether a number is prime or not using c?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
How can I increase the allowable number of simultaneously open files?