Is the C language is the portable language...If yes...Then
Why...and if not then what is problem so it is not a
Portable language..???
Answer Posted / abdur rab
C as a language is portable across any platforms, as it
needs a compiler to compile in different platforms.
The drawback of compiled 'C' code is "Architecture
Dependent" and hence the code compiled in 32 bit
architecture cannot be used for 64 bit.
| Is This Answer Correct ? | 31 Yes | 2 No |
Post New Answer View All Answers
using only #include
What are the string functions? List some string functions available in c.
Can we access the array using a pointer in c language?
What are keywords c?
how to introdu5ce my self in serco
What is the difference between arrays and pointers?
What are qualifiers in c?
What is c language and why we use it?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What is the difference between array and structure in c?
What is a pragma?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What is the difference between exit() and _exit() function in c?
Explain what is the concatenation operator?