What is pointer and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of the fflush() function in C?
What is the benefit of using an enum rather than a #define constant?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
What is sizeof int in c?
Why do we need functions in c?
difference between the array and linked list general difference related to memory
what is the difference between strcpy() and memcpy() function?
c language interview questions & answer
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
What is C language ?
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?
Should I learn data structures in c or python?