what is meant by files?

Answer Posted / buuuurrrrrrrrrrrrrrr...

it is a collection of empty pages with hard cardboard on
both sides on which the name of our collg is very badly
highlighted

Is This Answer Correct ?    1 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is methods in oop?

537


What is encapsulation with real life example?

568


What is the real time example of encapsulation?

594


What type of loop is a for loop?

682


What is the problem with multiple inheritance?

582






#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

2064


Why is polymorphism needed?

591


Who invented oop?

651


State what is encapsulation and friend function?

696


Can an interface inherit a class?

557


Can a varargs method be overloaded?

617


How is class defined?

584


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1655


What is inheritance in simple words?

624


Write a c++ program to display pass and fail for three student using static member function

2813