Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

write a program to print the one dimensional array.

1 Answers  


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

0 Answers   Wilco,


regarding pointers concept

0 Answers  


using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

0 Answers  


how to swap 2 numbers within a single statement?

4 Answers  


What does s c mean in text?

0 Answers  


Write a simple code fragment that will check if a number is positive or negative.

0 Answers  


What is string function in c?

0 Answers  


write a method for an array in which it can display the largest n next largest value.

1 Answers   Value Labs,


How can you return multiple values from a function?

0 Answers  


List some basic data types in c?

0 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


Categories