Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
No Answer is Posted For this Question
Be the First to Post Answer
What are register variables? What are the advantage of using register variables?
How can I delete a file?
How do you determine a file’s attributes?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
How can I find out if there are characters available for reading?
What is structure packing ?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What does == mean in texting?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Why is C called a middle-level language?
What is an array? What the different types of arrays in c?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?