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
main() { extern int i; i=20; printf("%d",i); }
Implement a t9 mobile dictionary. (Give code with explanation )
1 Answers Amazon, Peak6, Yahoo,
void main() { int *i = 0x400; // i points to the address 400 *i = 0; // set the value of memory location pointed by i; }
main() { float i=1.5; switch(i) { case 1: printf("1"); case 2: printf("2"); default : printf("0"); } }
Write a Program that Inputs 10 Numbers in an Array and Show the Maximum Number
WAP to display 1,2,3,4,5........N
what is variable length argument list?
main() { main(); }
#define a 10 int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } void foo() { #undef a #define a 50 }
why is printf("%d %d %d",i++,--i,i--);
Which version do you prefer of the following two, 1) printf(ā%sā,str); // or the more curt one 2) printf(str);
#ifdef something int some=0; #endif main() { int thing = 0; printf("%d %d\n", some ,thing); }