What is identifier in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between fread buffer() and fwrite buffer()?
What is derived datatype in c?
c program to subtract between two numbers without using '-' sign and subtract function.
How can I determine whether a machines byte order is big-endian or little-endian?
Explain what is the heap?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
How can I change the size of the dynamically allocated array?
How many levels of pointers can you have?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
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?
Why we use conio h in c?