New STL Interview Questions :: ALLInterview.com http://www.allinterview.com New STL Interview Questions en-us #define CUBE(x) (x*x*x) main() { int a,b=3; a=cube(b++); printf(&q http://www.allinterview.com/showanswers/100014.html surely 'a' cannot be 4 or 6.... it will be the value of b... since we are multiplying b++ thrice...... so surely 'a' cannot be 4 or 6..... according to me b=6 , and a=60...... thank u i want a road rash 3d game code if some one know please help me http://www.allinterview.com/showanswers/97673.html what is electronic software http://www.allinterview.com/showanswers/97270.html it is a device, why we are using the fork command?.. how it works? http://www.allinterview.com/showanswers/96972.html In linux fork() system call is used to create a child process. The Child process inherits some properties of its parent and operates in a separate memory space how to get the sum of two integers? http://www.allinterview.com/showanswers/96549.html what is the acronym of the term &#039;C.O.M.P.U.T.E.R&#039; ? http://www.allinterview.com/showanswers/94667.html Simple Living, High Thinking... Computer stands for C - Calculate O - Operting M - Machine P - Plus U - Ultimate T - Testing E - Error R - Result i wanted to know about questions about c,c++ , which is required for http://www.allinterview.com/showanswers/91554.html what is c++ http://www.allinterview.com/showanswers/88522.html c + oo -------> that means c with object oriented language tell about sorted linked list http://www.allinterview.com/showanswers/86002.html linked list means node which is connected each other with a line. it means that each node is connected with another one. Each node of the list hold the referance of the next node. if we talk about the sorted linked list , it is also a list Write a program in C/C++ to implement reader- writer problem http://www.allinterview.com/showanswers/84638.html Readers-Writers Problem: The readers-writers problem is a classic synchronization problem in which two distinct classes of threads exist, reader and writer. Multiple reader threads can be present in the Database simultaneously. However, the Write a program in C++ returning starting locations of a substring us http://www.allinterview.com/showanswers/84637.html #include<stdio.h> #include<iostream.h> int main() { char* mystrstr(char*,char*); char str1[20]; char str2[10]; cout<<"\n Enter two strings\t"; cin>>str1>>str2; cout<<"\nstr1 = "<&l Write a program in C++ to concatenate two strings into third string u http://www.allinterview.com/showanswers/84636.html #include <iostream.h> #include <string.h> void main(){ char *str1 = "First String"; char *str2 = "Second String"; int len = strlen(str1)+strlen(str2)+1; char *result = new char[len]; int i ; for( i =0 write a program to demonstrate,how constructor and deconstructor work http://www.allinterview.com/showanswers/83471.html why does the execution of a c++ program start with main()??? http://www.allinterview.com/showanswers/82279.html The compiler was designed to recognize main as the entry point in a program. It started that way with C, and C compilers were just built that way. It's the same way with C++ and Java just because of habit, consistency, standards, etc. write a program that input four digit no and finds it is palindrome http://www.allinterview.com/showanswers/81974.html