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 |
when user give a number it multiply with 9 without useing '+' and '*' oprator
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
Explain how can I prevent another program from modifying part of a file that I am modifying?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
What will be the output of x++ + ++x?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
how can I convert a string to a number?
Write a program to reverse a given number in c language?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is a Genralised LInked List?? Please give a detailed explation of it..