write a c program to calculate sum of digits till it reduces
to a single digit using recursion
Difference between strcpy() and memcpy() function?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
How many keywords are there in c?
can we change the default calling convention in c if yes than how.........?
How can you draw circles in C?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How to implement call back functions ?
What is conio h in c?
What are the different types of constants?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Is that possible to add pointers to each other?
Is exit(status) truly equivalent to returning the same status from main?