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"
No Answer is Posted For this Question
Be the First to Post Answer
25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?
11 Answers CTS, TCS,
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
How do you generate random numbers in C?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
Explain how do you sort filenames in a directory?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What are the advantages of c language?
How can you print HELLO WORLD without using "semicolon"?
What are the different pointer models in c?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
What is meant by type specifiers?