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
1 12071Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
4 6810
Which is better pointer or array?
What are terms in math?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Do string constants represent numerical values?
What are lookup tables in c?
How to declare a variable?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What is c standard library?
Define C in your own Language.
What is the purpose of void in c?
What is meant by initialization and how we initialize a variable?
Explain how do you override a defined macro?
What is a pointer in c plus plus?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Explain enumerated types in c language?