Answer Posted / dhanshri chabukswar
c is a language used to write programs that tell the computer what to do - like calculations ,controlling devices or building operating systems.
c is a powerful,structured and portable programming language used to develop software and system applications ...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How would you use the functions fseek(), freed(), fwrite() and ftell()?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
How can you increase the allowable number of simultaneously open files?
Can we change the value of static variable in c?
What is linear search?
What is the use of sizeof () in c?
Write a program to reverse a linked list in c.
What is indirection in c?
What are the advantages of the functions?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
How can I read a binary data file properly?
Can we increase size of array in c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
How a string is stored in c?
What are the 5 types of inheritance in c ++?