what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / 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 |
Post New Answer View All Answers
What are terms in math?
What is the return type of sizeof?
What is malloc and calloc?
What is d scanf?
What is volatile c?
What is bin sh c?
What are the features of the c language?
How arrays can be passed to a user defined function
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is meant by operator precedence?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
How can I open a file so that other programs can update it at the same time?
What is the role of && operator in a program code?
What is the difference between procedural and functional programming?
Does c have an equivalent to pascals with statement?