What is output redirection?
No Answer is Posted For this Question
Be the First to Post Answer
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
What is volatile variable how do you declare it?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
Explain what is the difference between text files and binary files?
where are auto variables stored? What are the characteristics of an auto variable?
What are enums in c?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
WHO WROTE C LANGUAGE?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What is meant by recursion?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }