Answer Posted / maryam
q1 yes q2 yes q3 yes q4 no q5 no q6 yes q7 no q8 no q9 no q10 no
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Do you know the purpose of 'register' keyword?
Why is not a pointer null after calling free?
Why we use int main and void main?
Why cant I open a file by its explicit path?
Explain built-in function?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What does struct node * mean?
What is the purpose of ftell?
What is advantage of pointer in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Explain the binary height balanced tree?
Differentiate between calloc and malloc.
Write a program for finding factorial of a number.
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Why is sizeof () an operator and not a function?