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

Post New Answer

More C Interview Questions

What is f'n in math?

0 Answers  


Write down the program to sort the array.

4 Answers   Impiger,


What is the use of a semicolon (;) at the end of every program statement?

1 Answers  


What is structure and union in c?

0 Answers  


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

0 Answers  






If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???

3 Answers   Amdocs, IBM,


Why is c so important?

0 Answers  


Can two or more operators such as and be combined in a single line of program code?

0 Answers  


What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

3 Answers   Accenture,


how to swap two nubers by using a function with pointers?

1 Answers  


write a C program to print the program itself ?!

16 Answers   TCS,


biggest of two no's with out using if condition statement

5 Answers  


Categories