define c

Answers were Sorted based on User's Feedback



define c..

Answer / prashanth patha

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

define c..

Answer / s.sherlin

c is a structure oriented or procedure oriented language.
c language is top down approach

Is This Answer Correct ?    13 Yes 6 No

define c..

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

define c..

Answer / devi

c is a procedure oriented language and pertform tasks in form of algorithms

Is This Answer Correct ?    1 Yes 1 No

define c..

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

define c..

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

Post New Answer

More C Interview Questions

How can I make sure that my program is the only one accessing a file?

0 Answers  


Process by which one bit pattern in to another by bit wise operation is?

0 Answers   InterGraph,


Can you please explain the difference between strcpy() and memcpy() function?

0 Answers  


Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers

1 Answers  


How do you use a 'Local Block'?

0 Answers   Ericsson,






Write a program to print "hello world" without using a semicolon?

0 Answers  


What is the Difference between Class and Struct?

10 Answers   Motorola,


Between macros and functions,which is better to use and why?

0 Answers  


What is meant by high-order and low-order bytes?

0 Answers  


Why is C language being considered a middle level language?

0 Answers  


write a program that will read the temperature in Celsius and convert that into Fahrenheit.

1 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


Categories