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
Is c call by value?
Describe the difference between = and == symbols in c programming?
What is gets() function?
Write a program to reverse a linked list in c.
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.
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
about c language
What does volatile do?
How do you search data in a data file using random access method?
Is Exception handling possible in c language?
How can you convert integers to binary or hexadecimal?
Write a C program in Fibonacci series.
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is the difference between char array and char pointer?
What is array of pointers to string?