What do you mean by command line argument?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by keywords in c?
Is using exit() the same as using return?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
what is a function pointer and how all to declare ,define and implement it ???
Once I have used freopen, how can I get the original stdout (or stdin) back?
Can you write a programmer for FACTORIAL using recursion?
#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?
What is the meaning of int *x[]();?
Explain data types & how many data types supported by c?
What are different types of pointers?
What is static memory allocation?
Code for calculating square root without using library function, of math.h