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 |
write a program to insert an element at the specified position in the given array in c language
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
What is the heap in c?
Can you subtract pointers from each other? Why would you?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
How do c compilers work?
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
define string ?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).