Explain what are the __date__ and __time__ preprocessor commands?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the general form of #line preprocessor?

0 Answers  


What is the difference between ++a and a++?

0 Answers  


What is the usage of the pointer in c?

0 Answers  


Are pointers integers in c?

0 Answers  


hi send me sample aptitude papers of cts?

0 Answers  






please give me some tips for the selection in TCS.

3 Answers   TCS,


How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.

1 Answers  


What is the ANSI C Standard?

0 Answers   Celstream,


write a c program for swapping two strings using pointer

0 Answers  


progrem to generate the following series 1 12 123 1234 12345

6 Answers   HCL, Wipro,


What should be keep precautions while using the recursion method?

1 Answers  


void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..

1 Answers  


Categories