Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

C++ program output?
Explain output of this program.
#include <iostream>
using std::cout;
using std::cin;
int main() {
  cout<<cout<<'
';
  cout<<cin;
  return 0;
}
It prints some address in hexadecimal. what is it?

Answer Posted / guest

0x8f94036c0x8f940346

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can malloc be used in c++?

1056


Can we use this pointer in a class specific, operator-overloading function for new operator?

1077


In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?

1041


Please explain the reference variable in c++?

1034


What is extern c++?

975


What is else if syntax?

1125


What is data abstraction? How is it different from data encapsulation?

964


How is c++ used in the real world?

999


What is the type of 'this' pointer?

992


If a function doesn’t return a value, how do you declare the function?

1024


What is the difference between a declaration and a definition?

1074


Who made c++?

1033


Differences between private, protected and public and give examples.

1023


Explain the benefits of proper inheritance.

1107


I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.

2765