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 happens if a header file is included twice?
What is n in c?
Do pointers store the address of value or the actual value of a variable?
Is python a c language?
How do I swap bytes?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
c program to compute AREA under integral
What is 'bus error'?
What math functions are available for integers? For floating point?
What is a structural principle?
Explain the difference between exit() and _exit() function?
Explain what is the best way to comment out a section of code that contains comments?
How will you find a duplicate number in a array without negating the nos ?
How do we make a global variable accessible across files? Explain the extern keyword?