what is meant by files?

Answer Posted / kalaivani

file is define as sequence of data ,it can be stored by
alphabet or name which can be chosen by the user

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is polymorphism and example?

590


What is the types of inheritance?

598


What is stream in oop?

837


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2160


String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?

1938






What are classes oop?

596


why reinterpret cast is considered dangerous?

1896


What is object in oops?

610


How is class defined?

582


What are the data types in oop?

600


write a program to find 2^n+1 ?

1546


• What are the desirable attributes for memory managment?

1725


i got a backdoor offer in process global,Bangalore..Can i work with it?

2324


Why is object oriented programming so hard?

612


Describe these concepts: Polymorphism, Inheritance and Abstraction.

604