Given a spherical surface, write bump-mapping procedure to
generate the bumpy surface of an orange
No Answer is Posted For this Question
Be the First to Post Answer
const int perplexed = 2; #define perplexed 3 main() { #ifdef perplexed #undef perplexed #define perplexed 4 #endif printf("%d",perplexed); } a. 0 b. 2 c. 4 d. none of the above
4. Main() { Int i=3,j=2,c=0,m; m=i&&j||c&I; printf(“%d%d%d%d”,I,j,c,m); }
can u give me the c codings for converting a string into the hexa decimal form......
main() { extern i; printf("%d\n",i); { int i=20; printf("%d\n",i); } }
Printf can be implemented by using __________ list.
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
main() { int i=-1; +i; printf("i = %d, +i = %d \n",i,+i); }
#if something == 0 int some=0; #endif main() { int thing = 0; printf("%d %d\n", some ,thing); }
main() { int i=5; printf(ā%dā,i=++i ==6); }
main() { int i, j, *p; i = 25; j = 100; p = &i; // Address of i is assigned to pointer p printf("%f", i/(*p) ); // i is divided by pointer p } a. Runtime error. b. 1.00000 c. Compile error d. 0.00000
How will u find whether a linked list has a loop or not?
main() { extern int i; i=20; printf("%d",sizeof(i)); }