what is the c.
Answers were Sorted based on User's Feedback
Answer / ganesh
c is a language which is used to create the console applications.
| Is This Answer Correct ? | 7 Yes | 0 No |
c is a programming language they ae use to create a software
they are run only c editior they are roboust ,secure ,oop
supported language
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nishant jain
C is a high-level and general purpose programming language that is ideal for developing firmware or portable applications. Originally intended for writing system software, C was developed at Bell Labs by Dennis Ritchie for the Unix Operating System (OS) in the early 1970
| Is This Answer Correct ? | 0 Yes | 0 No |
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What are the similarities between c and c++?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
How can you check to see whether a symbol is defined?
Tell me can the size of an array be declared at runtime?
Is main an identifier in c?
What does stand for?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Write a C program in Fibonacci series.
const char * char * const What is the differnce between the above tow?.
Which driver is a pure java driver
What are static variables in c?