what do the 'c' and 'v' in argc and argv stand for?
No Answer is Posted For this Question
Be the First to Post Answer
What is a symbolic constant?
What does == mean in texting?
Why does not use getgh(); and <conio.h> in c language.
what is calloc and malloc?
Is register a keyword in c?
What are integer variable, floating-point variable and character variable?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
Is there a way to compare two structure variables?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Explain the use of fflush() function?
Can we use visual studio for c?