what is c?
Answers were Sorted based on User's Feedback
Answer / pazhani
C is one of the computer programming Languages
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / m.karthik
c is a procedure oriented programming language ,,,,,,,,,
and structure oriented language .........
developed at at & t labs by dennis ritche..........
in 1970s.........
| Is This Answer Correct ? | 3 Yes | 2 No |
How can you determine the maximum value that a numeric variable can hold?
What does malloc () calloc () realloc () free () do?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
By using C language input a date into it and if it is right?
The operation of a stair case switch best explains the a) or operation b) and operation c)exclusive nor operation d)exclusive or operation Which of the following is/are syntactically correct? a) for(); b) for(;); c) for(,); d) for(;;);
1 Answers HCL, Public Service Commission,
What is a lookup table in c?
Do pointers store the address of value or the actual value of a variable?
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
Write a pro-gramme to determine whether the number is even or odd?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason