void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / vimal kumar sharma
442
| Is This Answer Correct ? | 19 Yes | 7 No |
Post New Answer View All Answers
What is the function of multilevel pointer in c?
in iso what are the common technological language?
What is the purpose of the preprocessor directive error?
What are the storage classes in C?
What is identifiers in c with examples?
What is the best style for code layout in c?
Explain the difference between structs and unions in c?
Where define directive used?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Why do we use int main instead of void main in c?
What are the uses of null pointers?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
What is hashing in c?