What is the output of the below program and how it is?
void main()
{
static int var=5;
printf("%d",var--);
if(var)
main();
}
Answer Posted / arti yadav
error
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What are the types of operators in c?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Is r written in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is %s and %d in c?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
a c code by using memory allocation for add ,multiply of sprase matrixes
What is pragma in c?
What are identifiers in c?
What is time null in c?
How to explain the final year project as a fresher please answer with sample project
What does c mean before a date?
How to get string length of given string in c?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is c mainly used for?