can we create and enter the data & hide files using
programmes ?

Answer Posted / pranjal prakash srivastava

Yes we can

Is This Answer Correct ?    14 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is oop better than procedural?

602


#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


How Do you Code Composition and Aggregation in C++ ?

24187


What is encapsulation with example?

576


Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?

4234






Which language is pure oop?

545


What is the difference between a constructor and a destructor?

609


Plese get me a perfect C++ program for railway/airway reservation with all details.

3427


What are the 4 pillars of oop?

666


What is encapsulation example?

545


What is an example of genetic polymorphism?

646


Which is not an object oriented programming language?

537


What is multilevel inheritance?

722


Why do while loop is used?

570


What is a null tree?

627