c programs are converted into machine language with the help of
a) an interpreter
b) a compiler
c) an operatinf system
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
Write a program of advanced Fibonacci series.
Write a program to reverse a linked list in c.
What does %d do?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What is the difference between #include <header file> and #include “header file”?
Why do we use namespace feature?
can we print any string without using terminator?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
What is void main () in c?
Explain how do you determine the length of a string value that was stored in a variable?
Place the #include statement must be written in the program?
Explain the difference between call by value and call by reference in c language?