Are local variables initialized to zero by default in c?
Explain Function Pointer?
What are dangling pointers in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(“%d\n”,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What would be an example of a structure analogous to structure c?
What should malloc() do?
What is pointers in c with example?
Why malloc is faster than calloc?
Name the language in which the compiler of "c" in written?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is array of pointers to string?