Answer Posted / santhi
the variable which can be modified.
| Is This Answer Correct ? | 24 Yes | 33 No |
Post New Answer View All Answers
How do you define CONSTANT in C?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is wrong with this code?
#include
Why is not a pointer null after calling free?
What is difference between structure and union?
Can 'this' pointer by used in the constructor?
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
What is the use of the function in c?
What is a program flowchart?
What is selection sort in c?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Explain the use of 'auto' keyword
How do you convert strings to numbers in C?
What is the concatenation operator?