How can you draw circles in C?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning When we write "#include" what is # and what does include does there???
Which weighs more, a gram of feathers or a gram of gold?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is pointer to pointer in c?
Explain data types & how many data types supported by c?
What is the use of putchar function?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is new line escape sequence?
What are the usage of pointer in c?