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 header files in c?
Can you apply link and association interchangeably?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What does the c preprocessor do?
how is the examination pattern?
What is the use of a semicolon (;) at the end of every program statement?
Explain what are multibyte characters?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Is javascript written in c?
How does sizeof know array size?
What are the features of c language?
Are pointers integers in c?
What is an array in c?
What is the scope of local variable in c?
What is structure pointer in c?