Advertisements
Advertisements
Explain any 4 functions from string.h header file with suitable examples.
Concept: String
What is pointer? Explain how the pointer variable declared and initialized.
Concept: Pointer
Select the correct option from multiple choice question.
void main() {
char a[]= “Hello world”;
char *p;
p=a;
printf(“\n%d%d%d%d”,sizeof(a),sizeof(p),strlen(a),strlen(p) ); }
Concept: Pointer
State True or False with reason.
Size of pointer variable is equal to the datatype it points to.
Concept: Pointer
State True or False with reason.
The statement void p; is valid.
Concept: Pointer
Explain need of file data and various modes of files also write program to create edit copy of file.
Concept: Files
Explain file handling in c in details.[Note: Mention file type, file
modes, file related functions and its use)
Concept: Files
Why files are needed? Explain all the opening modes. Write a program to create copy of the user specify names of source and destination files.
Concept: Files