Answer:
#include <stdio.h>
struct Phonebook {
char name[30];
char address[30];
int phone_number;
};
int main()
{
struct Phonebook pb = {"John Josh", "Newyork", 5551234};
printf("Name: %s \n", pb.name);
printf("Address: %s \n", pb.address);
printf("Phone Number: %d \n", pb.phone_number);
return 0;
}
Explanation:
- Define a struct called <em>Phonebook</em> that has two character arrays to store the value for name and address, and an integer value to hold the phone number
- In the main, define <em>pb</em> to represent a person and assign default values
- Print the name, address and phone number of the <em>pb</em> (person)
<caption> element.
It is used to add a caption to a HTML table. With CSS, it
may be positioned right at the bottom of the table but in HTML, it must appear
as the 1st descendant of a parent <table>. Note that you can
specify only one caption in a single table.
Answer:
Think the output is False because the string password contains #.
Explanation:
please rate Brailliest if you happy. keep in touch if you need any further assistance.☺️
How do network effects help Facebook fend off smaller social-networking rivals? The way a network effect works it that one user of a good or service determine the value of the product to other people. Depending on how many people use the product or service, allows the network to see the value they believe it holds. Because Facebook has billions of users, they have a high value and strong network.
Answer:
int sum = 0;
for (int i = 1; i < 100; i += 2) {
sum += i * i;
}
printf("The sum of cubes is %d", sum);
/* Prints: The sum of cubes is 166650 */
Explanation:
If 1 should be excluded, let the for loop start at 3.