Explain built-in function?
No Answer is Posted For this Question
Be the First to Post Answer
What does void main () mean?
what are the different storage classes in c?
When would you use a pointer to a function?
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Why does not c have an exponentiation operator?
Are there namespaces in c?
Once I have used freopen, how can I get the original stdout (or stdin) back?
which is faster execution: loops or recursion?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a<b,printb.find the sum digits of that number & then print.if a==b multiply 10 with a & add 20 with b store in c and then print
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?