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 |
What does the error 'Null Pointer Assignment' mean and what causes this error?
without using arithmatic operator solve which number is greater??????????
Write a C program to fill a rectangle using window scrolling
How do you define a string?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Write a C program to find the smallest of three integers, without using any of the comparision operators.
What are the types of data types and explain?
Why doesn't C have nested functions?
whats the use of header file in c?
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
Explain 'far' and 'near' pointers in c.
#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