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
What is the full form of getch?
What is the use of pragma in embedded c?
When can you use a pointer with a function?
Is null always defined as 0(zero)?
What is fflush() function?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
pierrot's divisor program using c or c++ code
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
How to compare array with pointer in c?
When is a void pointer used?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Why are all header files not declared in every c program?
What is the function of multilevel pointer in c?
Explain function?
Explain about block scope in c?