To reverse an entire text file into another text file....
get d file names in cmd line
No Answer is Posted For this Question
Be the First to Post Answer
void pascal f(int i,int j,int k) { printf(ā%d %d %dā,i, j, k); } void cdecl f(int i,int j,int k) { printf(ā%d %d %dā,i, j, k); } main() { int i=10; f(i++,i++,i++); printf(" %d\n",i); i=10; f(i++,i++,i++); printf(" %d",i); }
/*what is the output for*/ void main() { int r; printf("Naveen"); r=printf(); getch(); }
What is the main difference between STRUCTURE and UNION?
‎#define good bad main() { int good=1; int bad=0; printf ("good is:%d",good); }
main() { char string[]="Hello World"; display(string); } void display(char *string) { printf("%s",string); }
main() { int i; clrscr(); printf("%d", &i)+1; scanf("%d", i)-1; } a. Runtime error. b. Runtime error. Access violation. c. Compile error. Illegal syntax d. None of the above
how to test pierrot divisor
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
main() { int c[ ]={2.8,3.4,4,6.7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf(" %d ",*c); ++q; } for(j=0;j<5;j++){ printf(" %d ",*p); ++p; } }
how to delete an element in an array
code of a program in c language that ask a number and print its decremented and incremented number.. sample output: input number : 3 321123
main() { struct date; struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }