main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}

Answer Posted / pranu

655

Is This Answer Correct ?    2 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How will you declare an array of three function pointers where each function receives two ints and returns a float?

773


What is variable declaration and definition in c?

495


Why array is used in c?

549


Write a C program in Fibonacci series.

627


Write a program that accept anumber in words

1248






In c programming language, how many parameters can be passed to a function ?

626


What is indirection?

645


What is this infamous null pointer, anyway?

605


What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?

897


What is zero based addressing?

705


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

1491


How do you sort filenames in a directory?

703


Explain About fork()?

640


What is scope and lifetime of a variable in c?

570


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

632