what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / sebestiraj
1,2,3
| Is This Answer Correct ? | 1 Yes | 14 No |
Post New Answer View All Answers
Differentiate abs() function from fabs() function.
What is d scanf?
In a byte, what is the maximum decimal number that you can accommodate?
What are the types of data structures in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain the difference between #include "..." And #include <...> In c?
What is difference between scanf and gets?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is the translation phases used in c language?
write a program to create a sparse matrix using dynamic memory allocation.
given post order,in order construct the corresponding binary tree
What does stand for?
What is an array in c?
What is extern variable in c with example?