I didn't count the ducks that I saw in line,
but I do remember that one duck was in front of two ducks,
another duck behind two ducks. How many ducks did I see?
Answers were Sorted based on User's Feedback
Why ordinary variable store only one value
Explain what is page thrashing?
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"
What is the difference between #include and #include 'file' ?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
What is operator precedence?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
difference between ordinary variable and pointer in C?
write a program to copy the string using switch case?
How many levels of pointers have?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
What are multidimensional arrays?