How many loops are there in c?
Explain how can a program be made to print the name of a source file where an error occurs?
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); }
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What is the scope of global variable in c?
What is selection sort in c?
What are the c keywords?
Does free set pointer to null?
What does *p++ do? What does it point to?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the auto keyword good for?
What does nil mean in c?
What is the difference between arrays and pointers?
What are the 5 elements of structure?