Where does the name "C" come from, anyway?
No Answer is Posted For this Question
Be the First to Post Answer
Why c is called free form language?
Why do we use int main instead of void main in c?
Explain how do you declare an array that will hold more than 64kb of data?
What is bss in c?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Write the control statements in C language
What does int main () mean?
What is an expression?
how to write palindrome program?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
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
What is string function c?