Answer Posted / barni guru
DENNIS RITCHIE
| Is This Answer Correct ? | 28 Yes | 2 No |
Post New Answer View All Answers
Explain main function in c?
Why is C language being considered a middle level 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 is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What does the && operator do in a program code?
what is use of malloc and calloc?
explain what is fifo?
What are the benefits of c language?
What are the application of c?
Why do we use static in c?
what is uses of .net
How can I call fortran?
What are the types of unary operators?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Is it possible to pass an entire structure to functions?