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
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
write a program to display the frequency of each element in a given array in c language
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
write a function for strtok()??
I heard that you have to include stdio.h before calling printf. Why?
What are predefined functions in c?
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
How can a string be converted to a number?
What extern c means?
How can I make sure that my program is the only one accessing a file?
I need a sort of an approximate strcmp routine?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers