what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / r.aruna
answer is 3,2,2
because print the value form right to left.
so,the first one ++i means preincrement.
so,incremented one,2
second one is i++ means postincrement .
it doesn't increment store in same location
but next i means 3.because move to next location
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
how many errors in c explain deply
What is the scope of local variable in c?
What does return 1 means in c?
Is c programming hard?
Describe the header file and its usage in c programming?
What are the two types of structure?
When should a far pointer be used?
How many identifiers are there in c?
Which is better malloc or calloc?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Here is a good puzzle: how do you write a program which produces its own source code as output?
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 does sizeof int return?
What will the preprocessor do for a program?
What Is The Difference Between Null And Void Pointer?