What's the full form of STL?

Answers were Sorted based on User's Feedback



What's the full form of STL?..

Answer / prangya mohapatra

STL:-(Standard Template Library) are a set of C++ template
classes to provide common programming data structures and
functions such as doubly linked lists (list), paired arrays
(map), expandable arrays (vector), large string storage and
manipulation (rope), etc.

Is This Answer Correct ?    34 Yes 3 No

What's the full form of STL?..

Answer / i.sobanapriya

STANDARD TEMPLATE LIBRARY

Is This Answer Correct ?    7 Yes 3 No

Post New Answer

More OOPS Interview Questions

What is for loop and its syntax?

0 Answers  


#include <stdio.h> #include <alloc.h> #include <stdlib.h> #include <conio.h> void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

0 Answers  


what is the main difference between sizeof() operator in c and c++

3 Answers  


What do you mean by Encapsulation?

0 Answers   Ittiam Systems,


What does <> mean pseudocode?

0 Answers  


what is the advantage in software? what is the difference between the software developer and Engineer

1 Answers  


Can enum be null?

0 Answers  


What is encapsulation in oop?

0 Answers  


What are properties in oop?

0 Answers  


You have one base class virtual function how will call that function from derived class?

4 Answers  


WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT from an NIIT CENTRE??

21 Answers   Biocon, MIT, NIIT,


Name an advantage of linked list over array?

11 Answers   IBM, Infosys,


Categories