Can you write the function prototype, definition and mention the other requirements.
No Answer is Posted For this Question
Be the First to Post Answer
What is void main () in c?
Explain what is the difference between far and near ?
How can I send mail from within a c program?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
.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; }
Explain following declaration int *P(void); and int (*p)(char *a);
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
What is new line escape sequence?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What are header files? What are their uses?
Where is volatile variable stored?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?