What are local static variables?
No Answer is Posted For this Question
Be the First to Post Answer
What is the right way to use errno?
Describe the modifier in c?
prog for 1st five prime numbers in 2^x - 1
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); }
How can a program be made to print the line number where an error occurs?
Write a C program to count the number of email on text
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
How can I avoid the abort, retry, fail messages?
What are the __date__ and __time__ preprocessor commands?
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
What is a c token and types of c tokens?