#include<stdio.h>
main()
{
int a=1;
int b=0;
b=++a + ++a;
printf("%d %d",a,b);
}
Answer Posted / sas
2 5
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
Are comments included during the compilation stage and placed in the EXE file as well?
Is javascript based on c?
What is 02d in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is calloc()?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What are categories used for in c?
please give me some tips for the placement in the TCS.
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Can you please compare array with pointer?
Where static variables are stored in c?
How can I trap or ignore keyboard interrupts like control-c?
What is atoi and atof in c?
How can I discover how many arguments a function was actually called with?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above