- Q Owain Gwynedd of Wales defeated which English King in battle?
- Q What is the official tree of the Tamil Nadu state?
- Q What are layer objects in iOS operating system?
- Q What is the main difference between nsarray and nsmutablearray ?
- Q Who started a magazine called 'Sivayoga Vilasam'.
- Q The first Olympiad was held in Greece in the year
- Q What technical environments have you worked with?
- Q What are your views on the current political scenario in India?
- Q Rheoboam is a bottle size but also the last king of where
- Q In a six level building,a person lives .suppose the persons are A,B,C,D,E,F. --- and there were few clues like--- A can not live above third level, B can not live above A and below C.-- i am recalling each.did you understood the question--you have to find person living at each level.
-
Q
#include
-
#include
#include using namespace std; void main() { list ilist; list ::iterator iiter; for (int i=0;i<10;i++) ilist.push_back(i); iiter = find(ilist.begin(),ilist.end(),3); if ( *(iiter+1) ==4) cout <<"yeah ! found"; }