Answer Posted / tamil
malloc is a pointer it is used to allocate memory
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How many header files are in c?
What does %p mean?
Explain goto?
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.
What is wrong with this statement? Myname = 'robin';
What does the error message "DGROUP exceeds 64K" mean?
What is struct node in c?
What do you mean by c what are the main characteristics of c language?
How can I implement sets or arrays of bits?
What is difference between static and global variable in c?
Find MAXIMUM of three distinct integers using a single C statement
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What are the different categories of functions in c?
why return type of main is not necessary in linux