answersLogoWhite

0


Best Answer

It took 8 years.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How long did it take to build the Red Fort?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Agra fort is made up of which material?

It is made mostly from red sandstone.


When was James the Red Engine created?

James the Red Engine was created in 1946.


What is red-shortness in steel?

is the steel which breaks as it's heated to red hot


What is the colour of 2k ohms 2 percent tolerance resistor?

red 2, black 0, red 102, red 2%. 20 x 102 with 2% tol.


What is a enumerated data type?

An enumeration is a group of (closely) related constants of integral type (int, char, short, long or long long). Members of an enumeration are automatically initialised with values in the order they are declared, starting with the value 0 for the first member and incrementing by 1 for each additional member: enum traffic_light {green, amber, red}; // e.g., green=0, amber=1, red=2 If the start value 0 is undesirable, we can assign a different start value: enum traffic_light {green=1, amber, red}; // e.g., green=1, amber=2, red=3 A new start value can be placed anywhere in an enum: enum traffic_light {green, amber=4, red}; // e.g., green=0, amber=4, red=5 Two or more members can share the same value: enum traffic_light {green, amber, orange=1, red}; // e.g., green=0, amber=1, orange=1, red=2 The value of a previously declared member can be used to initialise another member: enum traffic_light {green, amber=green+1, red=green+2}; // e.g., green=0, amber=1, red=2 The names of an enumeration are within the scope of the declaration. This is often undesirable as two enumerations in the same scope cannot share the same member names: enum traffic_light {green, amber, red}; enum rainbow {red, orange, yellow, green, blue, indigo, violet}; // error! To avoid this, we can use an enum class. The enumeration then becomes a namespace: enum class traffic_light {green, amber, red}; enum class rainbow {red, orange, yellow, green, blue, indigo, violet}; // ok To refer to a member of an enum class, we use namespace resolution: traffic_light x = red; // error! no red in scope rainbow y = rainbow::green; // ok