What is the explanation for prototype function in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between const volatile int i & volatile const int j;
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Why do we use return in c?
What is a lookup table in c?
#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 ؟؟؟
What is gets() function?
what is c?
What is the value of h?
Explain about the constants which help in debugging?
Are there any problems with performing mathematical operations on different variable types?
Write a c program to demonstrate Type casting in c?
What is the purpose of sprintf() function?