Answer Posted / nashiinformaticssolutions
How does the assert() function work?
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Explain how does flowchart help in writing a program?
What is the general form of #line preprocessor?
What is omp_num_threads?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is the difference between array and structure in c?
Explain the meaning of keyword 'extern' in a function declaration.
What is a lookup table in c?
What are the difference between a free-standing and a hosted environment?
Write a simple code fragment that will check if a number is positive or negative.
What is the use of #define preprocessor in c?
Explain void pointer?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What does p mean in physics?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none