int j =15,i;
for (i=1; 1<5; ++i)
{printf ("%d%d
",j,i);
j = j-3;
}
Answers were Sorted based on User's Feedback
Answer / arun
Infinite Loop....Loop does not end...Because condition 1<5 is always True then the answer like this..,
151
122
93
64
35
06
-37
.
.
.
| Is This Answer Correct ? | 6 Yes | 0 No |
What are the types of pointers in c?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
What does static variable mean in c?
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
sir i got 146 correct question & i have also the advantage of height so will they consider my marks as 146+3=149.can any body tell me how they consider my height marks.
what is an inline fuction??
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
What are the advantages of using Unions?
What are the types of bitwise operator?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Can the size of an array be declared at runtime?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }