Answer:
Springtrap is William Afton, and the names of his victims are Gabriel, Jeremy, Susie, Fritz, and Cassidy
Explanation:
Answer:
#include<iostream>
using namespace std;
struct student
{
string name;
int id;
float gpa;
int major;
};
int main()
{
student student1;
student1.name="Patil";
student1.id=1;
student1.gpa=9.80;
student1.major=123;
cout<<"First student last name: "<<student1.name;
}
Explanation:
A struct is a container or data structure in C and C++ that holds data that describes or represents an object. It is defined with the struct keyword. Just like a class constructor method, the struct is called with the struct name and the instance name of the struct.
The student struct above is used to create an instance of students registered in a school. The first student struct instance is the 'student1'.
Answer: Routing table
Explanation:
Routing table is basically used to store the network route information in the form of data file in the random access memory (RAM). It mainly store information about the various types of connection and the remote network.
The routing table contain two columns and the first column is basically used for listing the every networking device and the computer system.
On the other hand, the second column s basically used to list about the destination device in which the computer wants to send a message. The main function of the router is to forward the packet to its actual destination by using the routing table.
Answer:
What do u mean by 5/1... And Sry for disturbing