Answer Posted / kratikagoel
when people perform a task together is called team.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Why is c called c not d or e?
Can you define which header file to include at compile time?
write a program to find the given number is prime or not
Tell me with an example the self-referential structure?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What is huge pointer in c?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What does the message "automatic aggregate intialization is an ansi feature" mean?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is malloc calloc and realloc in c?
Which is an example of a structural homology?
What is the advantage of an array over individual variables?
Explain heap and queue.
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
what is a function method?give example?