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


Please Help Members By Posting Answers For Below Questions

What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

826


What is unsigned int in c?

569


Why c is faster than c++?

640


What’s a signal? Explain what do I use signals for?

620


why wipro wase

1842






What is indirection?

663


How would you rename a function in C?

629


What is 1f in c?

1855


What is the g value paradox?

656


Explain what happens if you free a pointer twice?

623


What is local and global variable in c?

627


Where is volatile variable stored?

657


What are the 3 types of structures?

582


is it possible to create your own header files?

652


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

929