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 |
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
If I have a char * variable pointing to the name of a function ..
How do you prevent buffer overflows in C?
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
Explain the use of bit fieild.
what are the 10 different models of writing an addition program in C language?
What is the use of a static variable in c?
What is the purpose of 'register' keyword?
What are the advantages of Macro over function?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it