program to find out date after adding 31 days to a date in
the month of febraury also consider the leap year
What is the most efficient way to store flag values?
suppose there are five integers write a program to find larger among them without using if- else
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
what is op? for(c=0;c=1000;c++) printf("%c",c);
What is the purpose of & in scanf?
What is a constant?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
Why do we write return 0 in c?
What is const volatile variable in c?
Can you write the function prototype, definition and mention the other requirements.
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
What is the use of the #include directive?