Explain function?
No Answer is Posted For this Question
Be the First to Post Answer
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
Can variables be declared anywhere in c?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
Explain two-dimensional array.
what is the difference b/w compiler and debugger?
What does c mean in standard form?
What should be keep precautions while using the recursion method?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
What is difference between structure and union in c?
Write a code of a general series where the next element is the sum of last k terms.
Write a program to find factorial of a number using recursive function.