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 |
What is the use of getchar() function?
How can I find out the size of a file, prior to reading it in?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How can I convert integers to binary or hexadecimal?
What is difference between Structure and Unions?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is c programming structure?
i have a written test for microland please give me test pattern
Difference between for loop and while loop?
What is the exact difference between '\0' and ""