How many types of functions are there in c?
Explain how does free() know explain how much memory to release?
How pointers are declared?
What is struct node in c?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
what is default constructor?
What does c mean before a date?
What are directives in c?
What does the file stdio.h contain?
How does the assert() function work?
What is volatile in c language?
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
How can you convert integers to binary or hexadecimal?