What language is lisp written in?
No Answer is Posted For this Question
Be the First to Post Answer
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Is fortran faster than c?
what is the coding of display the factorial of a number using array and function?
What is the use of volatile?
What is a constant and types of constants in c?
Do you know what is the purpose of 'extern' keyword in a function declaration?
Do you know what is a programing language ?
What is a node in c?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
Give a method to count the number of ones in a 32 bit number?