Answer Posted / 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 |
Post New Answer View All Answers
What is function pointer c?
write a program to print data of 5 five students with structures?
What is the basic structure of c?
Explain the red-black trees?
What does 4d mean in c?
What is c language & why it is used?
What is the use of function overloading in C?
Tell us the use of fflush() function in c language?
When is a null pointer used?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is wrong with this initialization?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What's the right way to use errno?
How do you print only part of a string?
What is typedef struct in c?