Did c have any year 2000 problems?



Did c have any year 2000 problems?..

Answer / Sushil Kumar

Unlike some other languages, C itself does not store the date directly, so it did not have the Y2K problem. However, if a program used data structures or libraries that handled dates incorrectly, it could potentially exhibit issues.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What does the error 'Null Pointer Assignment' mean and what causes this error?

1 Answers   TISL,


without using arithmatic operator solve which number is greater??????????

1 Answers   Accenture,


Write a C program to fill a rectangle using window scrolling

1 Answers  


How do you define a string?

1 Answers  


Find duplicates in a file containing 6 digit number (like uid) in O (n) time.

1 Answers   GrapeCity,


Write a C program to find the smallest of three integers, without using any of the comparision operators.

7 Answers   TCS,


What are the types of data types and explain?

1 Answers  


Why doesn't C have nested functions?

2 Answers  


whats the use of header file in c?

2 Answers  


What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


Explain 'far' and 'near' pointers in c.

1 Answers  


#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks

9 Answers   Excel,


Categories