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 interface? When and where is it used?

1757


How many human genes are polymorphic?

661


What is destructor oops?

712


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

2169


What is the benefit of oop?

648






Why do pointers exist?

759


What is constructor overloading in oop?

711


Why is abstraction used?

714


What is purpose of inheritance?

751


class type to basic type conversion

1942


What is abstraction with example?

712


What is object in oop with example?

823


What is abstraction in oops with example?

874


What is new keyword in oops?

686


Is enum a class?

687