x=y=z=1
z=++x||++y&&++z
Printf("%%%d";xyz)
what is the values of x,y and z?????
Answers were Sorted based on User's Feedback
What are header files in c?
What is dangling pointer in c?
What is the use of sizeof?
why effort estimation is important?
What do you mean by a sequential access file?
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 }
What are control structures? What are the different types?
Write a program to generate prime factors of a given integer?
What are the different flags in C? And how they are useful? And give example for each in different consequences?
What are enums in c?
Hi, main() { } Is a user defined function or Built in Functionn
How to Throw some light on the splay trees?