PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER
FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE
NAMES AS COMMAND LINE
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
What is the difference between fread buffer() and fwrite buffer()?
Tell me what are bitwise shift operators?
Write a program to reverse a given number in c?
what is a function prototype?
How do I declare a pointer to an array?
Why does everyone say not to use gets?
What does the && operator do in a program code?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
How can I find the modification date and time of a file?