whether itis a structured language?
Answer
| Is This Answer Correct ? | 7 Yes | 0 No |
Question { 5484 }
how to find out the biggest element (or any other
operation) in an array which is dynamic. User need not to
mention the array size while executing.
Answer
| Is This Answer Correct ? | 0 Yes | 3 No |
Question { 5657 }
we have to use realloc only after malloc or calloc ? or we
can use initially with out depending on whether we are
using malloc or calloc in our program ?
Answer
| Is This Answer Correct ? | 3 Yes | 2 No |
What is the difference between GETS();AND SCANF();
Answer
| Is This Answer Correct ? | 103 Yes | 47 No |
Question { 4360 }
i want the code for printing the output as follows
4 4
3 3
2 2
1 1
0
1 1
2 2
3 3
4 4
Answer
| Is This Answer Correct ? | 2 Yes | 0 No |
how can i get output like this?
1
2 3
4 5 6
Answer
| Is This Answer Correct ? | 2 Yes | 1 No |
Question { 5124 }
what is the output of following question?
void main()
{
int i=0,a[3];
a[i]=i++;
printf("%d",a[i]
}
Answer
| Is This Answer Correct ? | 4 Yes | 1 No |
what is mallloc()?how it works?
Answer
| Is This Answer Correct ? | 4 Yes | 2 No |
how can we use static and extern?and where can we use this?
Answer
| Is This Answer Correct ? | 3 Yes | 3 No |
What is RAM memory? and What is ROM?Who designed one is
temparary and another is permanent?why they designed like
that?By using far pointer which type data(whether
hexadecimal)we can access?
Answer
| Is This Answer Correct ? | 0 Yes | 2 No |
pointer_variable=(typecasting
datatype*)malloc(sizeof(datatype));
This is the syntax for malloc?Please explain this,how it
work with an example?
Answer
| Is This Answer Correct ? | 6 Yes | 1 No |
how can i get this by using for loop?
*
**
*
****
*
******
Answer
| Is This Answer Correct ? | 1 Yes | 0 No |
how can i get this by using for loop?
*
**
*
****
*
******
Answer
| Is This Answer Correct ? | 0 Yes | 0 No |
Why data types in all programming languages have some range?
Why ritche have disigned first time likethat?Why not a
single data type can support all other types?
Answer
| Is This Answer Correct ? | 4 Yes | 2 No |
Question { 13040 }
Write a c code segment using a for loop that calculates and
prints the sum of the even integers from 2 to 30, inclusive?
Answer
| Is This Answer Correct ? | 6 Yes | 5 No |