Why is C language being considered a middle level language?
No Answer is Posted For this Question
Be the First to Post Answer
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
what are the advantages & disadvantages of unions?
char p="data"; printf(p);
What is the use of the #include directive?
What does c mean before a date?
Difference between linking and loading?
What is LINKED LIST? How can you access the last element in a linked list?
what is use#in c
Can I pass constant values to functions which accept structure arguments?
Write a program in C to convert date displayed in gregorian to julian date
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.