what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answers were Sorted based on User's Feedback
Answer / srsabariselvan
infinite loop.
and print the character associated with the 1000,1001,1002,....
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vinoth
It will work fine no value or error will be displayed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / a programmer
This will print the ascii characters from 0 to 1000 if the
datat type of the variable c is other than character. If the
datatype of the variable is char then it will be into
infinite loop.
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / jay sean
The output of the given program is the character or ascii
value of 0,1,2,..........so on up to the stack of memory
get full.The reason behind it is the condition for
termination is not given in the for loop,because c=1000 is
assingment operator not a conditional.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / manju
In each iteration the equivalent ascii values of 0 to 1000
will print.
| Is This Answer Correct ? | 5 Yes | 8 No |
Answer / sarath
in each iteration it will print the characters for ascii
values 0,1,2,3,...
| Is This Answer Correct ? | 6 Yes | 11 No |
Answer / rohit
it will come out of the for loop & hence no output.
because,when c=0,then for next condition it will check
whether 0==1000,the condition fails here itself only.
so,it doesn't go for executing any statement.
| Is This Answer Correct ? | 1 Yes | 6 No |
What is the difference between test design and test case design?
What is the general form of #line preprocessor?
what is the self-referential structure?
Is there a way to switch on strings?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
void main() { int i=5; printf("%d",i+++++i); }
Do string constants represent numerical values?
Is null always equal to 0(zero)?
How can I read and write comma-delimited text?
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
how to write a bubble sort program without using temporary variable?