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 find the size of the data type like int,float without using the sizeof operator?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
Explain what is the difference between declaring a variable and defining a variable?
How would you find a cycle in a linked list?
how to write a c program to print list of fruits in alpabetical order?
Explain what a Binary Search Tree is.
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
what is the difference between declaration and definition of a variable or function ?
Program to find largest of three numbers without using comparsion operator?
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
nic scientist exam
Is c# a good language?