What does calloc stand for?
No Answer is Posted For this Question
Be the First to Post Answer
Is c is a middle level language?
How do I use strcmp?
What is the difference between declaring a variable and defining a variable?
Why flag is used in c?
Why is the code below functioning. According to me it MUST NOT.
I want tcs placement papers of 2004-2009 , its urgent
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
give an example of type casting by a simple c program
main() { int i=400,j=300; printf("%d..%d"); }
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
Explain what is wrong with this program statement? Void = 10;