Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

Facebook C Interview Questions
Questions Answers Views Company eMail

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;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

2854

#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 5548

#‎include‬ void main() { int i; for(i=5;0;i++) { printf("%d",i); } }

2 3774

Post New Facebook C Interview Questions




Un-Answered Questions

How to add actions in driver script to run those actions in QTP?

1638


Which table holds the encrypted login password?

576


what is restricted earth fault explain in details

1735


What is difference between class and structure?

696


Why #include is used?

726






How to create an rdd?

237


Why are arrays useful in java?

665


What does round trip time mean?

751


Why does marble rarely contains fossils?

552


What is encapsulation in java?

738


Transformer cores are laminated in order to A simplify its construction B minimize eddy current loss C reduce cost D reduce hysterisis loss

2980


Why do all model object attributes get marked with @dynamic and not synthesised?

597


Will react hooks replace redux?

626


What is the difference between war file and jar file?

233


What are the benefits of using ember.js?

5