how does the for loop work actually..suppose for the
following program how it ll work plz explain to me
for(i=5;i>=0;i--)
prinf(i--);

Answer Posted / mahender

printf prints value by using format spicefiers
bt in this printf(i--);
means
error

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c call by value?

817


Describe the difference between = and == symbols in c programming?

1024


What is gets() function?

873


Write a program to reverse a linked list in c.

872


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

5229


How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?

805


about c language

1805


What does volatile do?

768


How do you search data in a data file using random access method?

1099


Is Exception handling possible in c language?

1807


How can you convert integers to binary or hexadecimal?

805


Write a C program in Fibonacci series.

856


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1402


What is the difference between char array and char pointer?

775


What is array of pointers to string?

809