define c
Answers were Sorted based on User's Feedback
C is a general purpose computer programming language which
can be used write programs for performing various types of
tasks on computer.
| Is This Answer Correct ? | 37 Yes | 3 No |
Answer / manoj pasumarthi
C is a structured, procedural programming language that has
been widely used both for operating systems and applications
and that has had a wide following in the academic community.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / devi
c is a procedure oriented language and pertform tasks in form of algorithms
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / amit soni
c is a low level language. this characterization is not
pejorative;it is simply means that C deals with some sort of
objects that most computer do,namely character number and
address.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / susmita
c is a set of instructions or commands, which are given for
the computer to do different activity or jobs or works
| Is This Answer Correct ? | 1 Yes | 3 No |
What is the Difference between Class and Struct?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
Distinguish between actual and formal arguments.
What is the difference between local variable and global variable in c?
What is c value paradox explain?
Explain how do you view the path?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
What is a void pointer in c?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
what is the difference between NULL & NUL keywords in C?
What does *p++ do?
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?