What are disadvantages of C language.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


Difference between Function to pointer and pointer to function

0 Answers  


Explain how are portions of a program disabled in demo versions?

0 Answers  


How are portions of a program disabled in demo versions?

0 Answers  


Can we declare variable anywhere in c?

0 Answers  






write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

0 Answers   HCL,


I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....

2 Answers  


what is pointer?

4 Answers  


Difference between fopen() and open()?

3 Answers   Aricent,


biggest of two no's with out using if condition statement

8 Answers  


n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }

7 Answers   Wipro,


Why dont c comments nest?

0 Answers  


Categories