The differences between Windows XP and Windows Visa
Answer Posted / naresh lingampally
Comparing XP and VISTA
there is visually a change in the Start Menu.
The Security feature is more expertise
later version of Vista came with Windows mail as default
email client.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Write a program in c to replace any vowel in a string with z?
Is c language still used?
Is boolean a datatype in c?
How can I open a file so that other programs can update it at the same time?
Explain which function in c can be used to append a string to another string?
What are the 5 organizational structures?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
You have given 2 array. You need to find whether they will
create the same BST or not.
For example:
Array1:10 5 20 15 30
Array2:10 20 15 30 5
Result: True
Array1:10 5 20 15 30
Array2:10 15 20 30 5
Result: False
One Approach is Pretty Clear by creating BST O(nlogn) then
checking two tree for identical O(N) overall O(nlogn) ..we
need there exist O(N) Time & O(1) Space also without extra
space .Algorithm ??
DevoCoder
guest
Posted 3 months ago #
#define true 1
#define false 0
int check(int a1[],int a2[],int n1,int n2)
{
int i;
//n1 size of array a1[] and n2 size of a2[]
if(n1!=n2) return false;
//n1 and n2 must be same
for(i=0;i
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Explain about the constants which help in debugging?
Explain what is wrong with this statement? Myname = ?robin?;
List a few unconditional control statement in c.
Do pointers take up memory?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters