please help me..... please codes and flowchart plz turbo c
lang po yan.....please asap response...
3. Make an astrology program. The user types in his or
her birthday (month, day, and year as integer), and the
program responds with the user’s zodiac sign, horoscope, and
other information related to it. If the user’s birth year
falls into a leap year, your program should display an
appropriate message for it.
NOTES:
Conditional Statements: it should be with graphics
No Answer is Posted For this Question
Be the First to Post Answer
What is .obj file in c?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
Is it possible to run a c program without using main?If yes HOW??
how to execute with out main in cprogram
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
What are qualifiers?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
Describe the modifier in c?
What is typedef struct in c?
What is page thrashing?
How do you generate random numbers in C?
program to locate string with in a string with using strstr function