int j =15,i;
for (i=1; 1<5; ++i)
{printf ("%d%d
",j,i);
j = j-3;
}
Answer Posted / chelle
is j= 12?
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What does %c do in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is a static variable in c?
How do you sort filenames in a directory?
How can you determine the maximum value that a numeric variable can hold?
What does the file stdio.h contain?
What are the advantages of external class?
Why do we need a structure?
Explain 'bit masking'?
Subtract Two Number Without Using Subtraction Operator
What is difference between Structure and Unions?
Do pointers need to be initialized?
Explain the difference between #include "..." And #include <...> In c?
Explain how do you override a defined macro?