How can I send mail from within a c program?
No Answer is Posted For this Question
Be the First to Post Answer
When do we get logical errors?
why should i select you?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Can you think of a way when a program crashed before reaching main? If yes how?
What is the difference between scanf and fscanf?
What compilation do?
7 Answers Geometric Software, Infosys,
How can I split up a string into whitespace-separated fields?
Explain what are preprocessor directives?
Explain argument and its types.
What happens if a header file is included twice?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }