What are the types of data types and explain?
No Answer is Posted For this Question
Be the First to Post Answer
How can I find out how much free space is available on disk?
How do you determine a file’s attributes?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
What does d mean?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
Calculate 1*2*3*____*n using recursive function??
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
how to find sum of digits in C?
How can I handle floating-point exceptions gracefully?
where can function pointers be used?