what is the meaning of 'c' language
Answers were Sorted based on User's Feedback
Answer / srinidhi
c=computer thats wt c language means computer language
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / varun kumar
C is the language which easy understand by the
machine.Because it is also called the machine language.it
convert the source code into object code then into machine
code.
| Is This Answer Correct ? | 2 Yes | 2 No |
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
how to find out the union of two character arrays?
write function to reverse char array ... without using second array
Tell me what is the purpose of 'register' keyword in c language?
what is the diff b/w static and non static variables in C. Give some examples plz.
What are the types of type specifiers?
write a c program to find the sum of five entered numbers using an array named number
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Why is a semicolon (;) put at the end of every program statement?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
what is pointer?