How do you construct an increment statement or decrement statement in C?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is meant by type casting?
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); }
Is it possible to have a function as a parameter in another function?
How can I implement a delay, or time a users response, with sub-second resolution?
What is the advantage of c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is file in c language?
Explain what is a const pointer?
What is character constants?
What are disadvantages of C language.
How do you view the path?
How can I automatically locate a programs configuration files in the same directory as the executable?