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

In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a

2 Answers   BitWise,


How can you invoke another program from within a C program?

0 Answers  


Write a program to show the workingof auto variable.

2 Answers   Infotech,


Why is structure important for a child?

0 Answers  


write a program to print infinte number

4 Answers  






write a program to create a sparse matrix using dynamic memory allocation.

0 Answers  


What is string function c?

0 Answers  


What is the difference between GETS();AND SCANF();

4 Answers   TCS,


how to set Nth bit of a variable?

1 Answers  


What is c token?

0 Answers  


What is a keyword?

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


Categories