Where are local variables stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Explain the difference between ++u and u++?
What does the message "warning: macro replacement within a string literal" mean?
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); }
Are c and c++ the same?
what is the difference between char * const and const char *?
which operator is known as dummy operator in c?
What is the best way to store flag values in a program?
What does it mean when a pointer is used in an if statement?
What are c identifiers?
What is the right type to use for boolean values in c? Is there a standard type?