what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / guest
junk character
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is the collection of communication lines and routers called?
What is function in c with example?
What are all different types of pointers in c?
Explain why c is faster than c++?
What is c system32 taskhostw exe?
What is the heap?
What is string constants?
Where does the name "C" come from, anyway?
What extern c means?
Explain the advantages of using macro in c language?
Write a program with dynamically allocation of variable.
What are keywords in c with examples?
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 use of void pointer and null pointer in c language?