disply the following menu
1.Disply
2.Copy
3.Append;
as per the menu do the file operations
4.Exit
No Answer is Posted For this Question
Be the First to Post Answer
What is the modulus operator?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
who is the father of C Language?
20 Answers CTS, UST,
Explain how does flowchart help in writing a program?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Three major criteria of scheduling.
What are the storage classes in C?
Why is it important to memset a variable, immediately after allocating memory to it ?
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
which operator is known as dummy operator in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...