Why is a semicolon (;) put at the end of every program statement?
No Answer is Posted For this Question
Be the First to Post Answer
Write the syntax and purpose of a switch statement in C.
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<n1-1;i++) { if( !( (a1[i]>a1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
What is typedef struct in c?
Why is struct padding needed?
Explain goto?
What is an anonymous union and where to apply that ?
what is meant by flushll() in c programming?
Explain how do you determine whether to use a stream function or a low-level function?
What is the size of array float a(10)?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Can a pointer point to null?