where can function pointers be used?
Answers were Sorted based on User's Feedback
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Explain what is the benefit of using enum to declare a constant?
HOW DO YOU HANDLE EXCEPTIONS IN C?
Write a c program to demonstrate Type casting in c?
What is optimization in c?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
Why is C called a middle-level language?
How does sizeof know array size?
Mention four important string handling functions in c languages .
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
How do I copy files?