print ur name 20,000 times without using inbuilt library
functions like printf,scanf,gets,puts,getchar or putchar
Answer Posted / shrikantauti
in the question itself there is clearly written print which means we must use either printf or puts. else otherwise it is not possible.
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
What are logical errors and how does it differ from syntax errors?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
please send me the code for multiplying sparse matrix using c
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is struct node in c?
What are the advantages of using new operator as compared to the function malloc ()?
Explain what is operator promotion?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is a function simple definition?
What is difference between array and pointer in c?
What would be an example of a structure analogous to structure c?
What does dm mean sexually?
What is indirection? How many levels of pointers can you have?
Should I learn c before c++?