what is the answer for it
main()
{
int i;
clrscr();
printf("%d",&i)+1;
scanf("%d",i)-1;
}
Answer Posted / saurabh shukla
it will print the memory adress of i
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are shell structures used for?
What is a null string in c?
Explain what does the function toupper() do?
Are negative numbers true in c?
Why cant I open a file by its explicit path?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What are header files and explain what are its uses in c programming?
What are disadvantages of C language.
Add Two Numbers Without Using the Addition Operator
What is local and global variable in c?
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.
What is the difference between union and anonymous union?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
How is a structure member accessed?
Explain what is the purpose of "extern" keyword in a function declaration?