Write a program in "C" to calculate the root of a quadratic
equation ax^2+bx+c=0, where the value of a,b & c are known.
No Answer is Posted For this Question
Be the First to Post Answer
Should a function contain a return statement if it does not return a value?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
praagnovation
Differentiate between Macro and ordinary definition.
What is the use of getchar() function?
What are the advantages and disadvantages of pointers?
Explain about C function prototype?
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
whether itis a structured language?