Can the curly brackets { } be used to enclose a single line of code?
No Answer is Posted For this Question
Be the First to Post Answer
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
Why can’t we compare structures?
How can I find the modification date and time of a file?
What is the use of #include in c?
what is an ERP?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is the explanation for the dangling pointer in c?
What does %c mean in c?
Explain the difference between struct and union.
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
what is the use of call back function in c?tell me with example