C language interview questions solution for freshers beginners placement tricky good pointers answers explanation operators data types arrays structures functions recursion preprocessors looping file handling strings switch case if else printf advance linux objective mcq faq online written test prime numbers Armstrong Fibonacci series factorial palindrome code programs examples on c++ tutorials and pdf
4 comments:
I want question like to program ******
*****
****
***
**
*
I want to know how to crate an x and y axis graph in C and able to plot log or parabola or other equations on the graph.
#include
void main()
{
int i,j;
for(i=0;i<6;i++)
{
for(j=0;j<6-i;j++)
printf("*")
printf("\n")
}
}
srry it should be #include
Post a Comment