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.
1.write a function to print names of all students who joined in a particular year
2.write a function to print the data of a student whose roll number is given
No Answer is Posted For this Question
Be the First to Post Answer
What is console in c language?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the diffrent between while and do while statement ?
code for reverse alternate words from astring
How to write a C program to determine the smallest among three nos using conditional operator?
what about "char *(*(*a[])())();"
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
suppose there are five integers write a program to find larger among them without using if- else
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
what is the diference between pointer to the function and function to the pointer?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is meant by high-order and low-order bytes?