Can the sizeof operator be used to tell the size of an array passed to a function?
What is the -> in c?
Explain modulus operator.
Do you know the difference between exit() and _exit() function in c?
What are the three constants used in c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What are the different types of endless loops?
Can main () be called recursively?
What are data structures in c and how to use them?
Differentiate between functions getch() and getche().
Describe static function with its usage?
code for quick sort?
What type of function is main ()?
what will be maximum number of comparisons when number of elements are given?
while initialization of array why we use a[][2] why not a[2][]...?