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..???
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / suresh
ya,c is a portable language coz it needs compiler to
compile the program at different platforms.
| Is This Answer Correct ? | 14 Yes | 4 No |
Why is struct padding needed?
how should functions be apportioned among source files?
What are examples of structures?
What is floating point constants?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Is multithreading possible in c?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
What is f'n in math?
How many header files are in c?
Why do some versions of toupper act strangely if given an upper-case letter?
In C programming, what command or code can be used to determine if a number of odd or even?