main()
{
int a[10];
printf("%d",*a+1-*a+3);
}
Answers were Sorted based on User's Feedback
Answer / rameshp
ans is 4.
bec
*a+1-*a+3= 4 +*a,-*a ll be cancel....so ans s 4...
| Is This Answer Correct ? | 49 Yes | 3 No |
How to get string length of given string in c?
how to write hello word without using semicolon at the end?
Can variables be declared anywhere in c?
What's the difference between calloc() and malloc()?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
When c language was developed?
Write a program to identify if a given binary tree is balanced or not.
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Is swift based on c?
How can I read data from data files with particular formats?
Why array is used in c?