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 / vishnu
ur printf syntax is wrong so..u'll will get syntax error
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Is flag a keyword in c?
What is a header file?
i have a written test for microland please give me test pattern
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
How can this be legal c?
What is c variable?
Linked lists -- can you tell me how to check whether a linked list is circular?
Why we use stdio h in c?
Can stdout be forced to print somewhere other than the screen?
Is it fine to write void main () or main () in c?
Do you know the purpose of 'register' keyword?
What is #define in c?
What do you mean by Recursion Function?
What is the use of typedef in structure in c?