How reliable are floating-point comparisons?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
program to convert a integer to string in c language'
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
can anyone please tell about the nested interrupts?
What is the difference between near, far and huge pointers?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
write a c program to store and print name,address,roll.no of a student using structures?
What are dangling pointers?
Describe the steps to insert data into a singly linked list.
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }