what is c programming?

Answers were Sorted based on User's Feedback



what is c programming? ..

Answer / keerthi

c is procedure oriented programming language. In c program
execution starts from main().c is basic language for some
languages like c++,java etc.c is platform dependent and case
sensitive language.

Is This Answer Correct ?    8 Yes 0 No

what is c programming? ..

Answer / renisha

c is powerful system language even which user are using to
compiler as source code. it used input and display the output.

Is This Answer Correct ?    4 Yes 1 No

what is c programming? ..

Answer / priyanka mali

C Is the procedure oriented language, basically uses firstly
compilers which accepts source code from compliers as input
and produces .exe as output.it is a first usr friendly
language which takes input in the form of statements / usr
language and givesdesired outpu.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain &#1567;&#1567;&#1567;

4 Answers  


what is the differance between pass by reference and pass by value.

7 Answers   Infosys,


read an array and search an element

1 Answers  


What are qualifiers?

0 Answers  


Is there a way to compare two structure variables?

0 Answers  






How can I copy just a portion of a string?

0 Answers  


if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?

9 Answers   Wipro,


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


Why pointers are used in c?

0 Answers  


Write a code of a general series where the next element is the sum of last k terms.

0 Answers   Aspiring Minds,


Write a program to check palindrome number in c programming?

0 Answers  


What are examples of structures?

0 Answers  


Categories