void main()
{
int i=1;
printf("%d%d%d",i,++i,i++);
}
Cau u say the output....?
Answers were Sorted based on User's Feedback
How to convert hexadecimal to binary using c language..
1 Answers Bajaj, GAIL, Satyam, Zenqa,
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;
Given an int variable n that has already been declared and initialized to a positive value, and another int variable j that has already been declared, use a do...while loop to print a single line consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables other than n and j .
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
what are the techniques for reducing the fragility of a memory bug?
write a profram for selection sort whats the error in it?
void main() { int i=7; printf("N= %*d",i,i); }
what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?
Write a c-programe that input one number of four digits and find digits sum?
What are the different types of errors in C and when they occur?
Write a program to accept two strings of Odd lengths. Then take all odd characters from one string and even characters from the other and concatenate and produce a string.
what is macro in c? Difference between single linked list & double linked list what is fifo & lifo? what is stack & queue?