for(i=0;i=printf("Hello");i++);
printf("Hello");
how many times how will be printed?????????
Answer Posted / navdeep
"Hello" will be printed infinite times
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
explain what are pointers?
What should malloc(0) do?
Why c is a procedural language?
How can I do graphics in c?
What is 2 d array in c?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is meant by type specifiers?
What is the use of the function in c?
Is c high or low level?
Explain what does a function declared as pascal do differently?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is the value of uninitialized variable in c?
What is the sizeof () operator?
What do you understand by normalization of pointers?
What is data structure in c language?