main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / ajay karanam
4554202496
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
What are the parts of c program?
Why c is a procedural language?
What is meant by 'bit masking'?
What is union in c?
Differentiate between the expression “++a” and “a++”?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Explain why C language is procedural?
What is the use of ?: Operator?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Why can arithmetic operations not be performed on void pointers?
What is abstract data structure in c?
What is omp_num_threads?
What are the types of type specifiers?
Is c programming hard?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings