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 |
Are there constructors in c?
Explain the advantages of using macro in c language?
How many header files are in c?
What are register variables? What are the advantage of using register variables?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
wtite a program that will multiply two integers in recursion function
How can I read a binary data file properly?
Write a program for deleting duplicate elements in an array
What is the purpose of realloc()?
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.