Write a C Program to display the following menu:
Menu
1. Display
2. Copy
3. Append
4. Exit
Accept the choice (1-4) from the user, and perform the
following tasks:
Choice 1: Accept a file name from the user and display the
file on screen
Choice 2: Accept two file names, and copy first file to the
second
Choice 3: Accept two file names, and append second file to
the first file
Choice 4: Terminate the program
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What is a stream in c programming?
What kind of structure is a house?
What is the difference between typeof(foo) and myFoo.GetType()?
What is the use of ?
Can the “if” function be used in comparing strings?
writw a program to insert an element in the begning of a doubly linked list
What is a MAC Address?
Is it possible to create recycle bin in mobiles?
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
Write a program to swap two numbers without using third variable in c?