what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / srsabariselvan
infinite loop.
and print the character associated with the 1000,1001,1002,....
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
where are auto variables stored? What are the characteristics of an auto variable?
Why main is not a keyword in c?
What is page thrashing?
Is r written in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is atoi and atof in c?
When the macros gets expanded?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What are Macros? What are its advantages and disadvantages?
Mention four important string handling functions in c languages .
What are structure members?
Which programming language is best for getting job 2020?
What are the 5 elements of structure?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.