Why doesn't the code "int a = 1000, b = 1000;
long int c = a * b;" work?
Answer Posted / vignesh1988i
this will work.... correctly
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Write a Program to find whether the given number or string is palindrome.
How can I read/write structures from/to data files?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is an auto keyword in c?
Is Exception handling possible in c language?
What is a double c?
How reliable are floating-point comparisons?
What language is lisp written in?
Is it fine to write void main () or main () in c?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Explain main function in c?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
Can one function call another?
Are global variables static in c?