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
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
What is difference between main and void main?
How are Structure passing and returning implemented by the complier?
Write a program to print "hello world" without using a semicolon?
How many bytes are occupied by near, far and huge pointers (dos)?
How can I read a binary data file properly?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
where does it flourished?
What are local static variables?
Is c easier than java?
1. Write a program to reverse every second word in a given sentence.
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?