Answer Posted / kiran
{
int n = 5;
for(i=1;i<=10;i++)
printf("
%d x %d = %d",n,i,n*i);
}
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Where are the auto variables stored?
What's a good way to check for "close enough" floating-point equality?
Differentiate between calloc and malloc.
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are the properties of union in c?
What is the use of typedef in c?
Write a code to generate divisors of an integer?
What are header files and what are its uses in C programming?
How to implement a packet in C
What is build process in c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
How many types of operator or there in c?
How do you construct an increment statement or decrement statement in C?