What do you mean by stl?
Answer / sakshyam ghimire
The Standard Template Library (STL) is a set of C++ template classes to provide common programming data structures and functions such as lists, stacks, arrays, etc.
| Is This Answer Correct ? | 0 Yes | 0 No |
Which data structure gives efficient search? A. B-tree B. binary tree C. array D. linked list
21 Answers ABC, Sun Microsystems,
How can you create a bulleted list, numbered list and an outline by using bullets and numbering command. Explain with the help of example.
Is string part of stl?
if x<>=z then statement end what is the cyclomatic complexity
Write a program in C++ to concatenate two strings into third string using pointers
Give the output of the following program main() {int ret; ret=fork();ret=fork();ret=fork();ret=fork(); if(!ret) printf("sun"); else printf("solaris");
draw a flowchart that accepts two numbers and checks if the first is divisible by the second.
How stl is different from the c++ standard library?
What does stl mean in slang?
how to swap two numbers in a linked list without exchanging the data but only the links?
why does the execution of a c++ program start with main()???
Give two integer arrays A & B.A has n elements and B has ' n-1 ' elements . A has all the elements that are there in B. But B has one missing element. Write a function that takes arrays , A & B as imnput and finds the missing element in most optised manner .