What is the scope of local variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
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?
Is c pass by value or reference?
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
How do you determine whether to use a stream function or a low-level function?
Can we declare variables anywhere in c?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
Explain what is meant by high-order and low-order bytes?
How to add two numbers without using semicolon at runtime
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
What is the difference between File pointer and Internal Charecter Pointer?
What are pointers? Why are they used?
Write a code of a general series where the next element is the sum of last k terms.