Answer Posted / samson chettri
stack over flow.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between single charater constant and string constant?
What is boolean in c?
What are the advantages of using macro in c language?
Describe dynamic data structure in c programming language?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What the different types of arrays in c?
Explain what does the format %10.2 mean when included in a printf statement?
What are the different types of objects used in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
write a program to find the given number is prime or not
What is typedef?
What is main return c?
Why we use int main and void main?
What is #include stdio h?
What is the difference between arrays and pointers?