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



Is the C language is the portable language...If yes...Then Why...and if not then what is problem s..

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

Is the C language is the portable language...If yes...Then Why...and if not then what is problem s..

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

Post New Answer

More C Interview Questions

What are pointers? Why are they used?

0 Answers  


what is the difference b/w NULL and null?

3 Answers   HSBC, IBM,


What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value

2 Answers   DynPro, TCS,


WHAT IS LOW LEVEL LANGUAGE?

2 Answers  


What is a void pointer? When is a void pointer used?

0 Answers   Aspire, Infogain,






int x=5; printf("%d%d%d",x,x<<2,x>>2);

2 Answers   TANCET,


List a few unconditional control statement in c.

0 Answers  


What is an lvalue?

0 Answers  


How to write a program for swapping two strings without using 3rd variable and without using string functions.

7 Answers   iGate, Infotech,


What is a structure member in c?

0 Answers  


I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed

4 Answers   Aspire,


Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.

8 Answers  


Categories