WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
No Answer is Posted For this Question
Be the First to Post Answer
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
what is differnence b/w macro & functions
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
How can I call a function, given its name as a string?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
How does #define work?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
How can you allocate arrays or structures bigger than 64K?
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
Explain the differences between public, protected, private and internal.
Tell me the use of bit field in c language?