write a program that print itself even if the source file is
deleted?
Answers were Sorted based on User's Feedback
Answer / j.shakthi yokesh
@bitan:dude....if u don't mind,plz explain the code....i
didn't understand
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a program to print factorial of given number without using recursion?
What is structure and union in c?
Explain how do you print an address?
what is available in C language but not in C++?
10 Answers CTS, TCS,
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
How would you obtain the current time and difference between two times?
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
How is a macro different from a function?
Explain 'bus error'?
Hai why 'c' is the middle language
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}