Write a C++ program to give the number of days
in each month according to what the user entered.
example: the user enters June the program must count
number of days from January up to June
No Answer is Posted For this Question
Be the First to Post Answer
What is a stream?
Explain what does it mean when a pointer is used in an if statement?
What does a run-time "null pointer assignment" error mean?
Is c language still used?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
What is bss in c?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
How to write c functions that modify head pointer of a linked list?
What is data type long in c?
What is meant by int main ()?