print ur name 20,000 times without using inbuilt library
functions like printf,scanf,gets,puts,getchar or putchar
Answer Posted / gaurav
char far* src = (char far*) 0xB8000000L; *src = 'M'; src
+= 2; *src = 'D';
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is && in c programming?
What is the data segment that is followed by c?
Which are low level languages?
What is hashing in c language?
Give the rules for variable declaration?
What is scanf () in c?
What is a static function in c?
How arrays can be passed to a user defined function
Do variables need to be initialized?
How can I dynamically allocate arrays?
How can you find out how much memory is available?
What is type qualifiers?
Process by which one bit pattern in to another by bit wise operation is?
What is 1d array in c?
Are the expressions * ptr ++ and ++ * ptr same?