Develop a routine to reflect an object about an arbitrarily
selected plane
No Answer is Posted For this Question
Be the First to Post Answer
given integer number,write a program that displays the number as follows: First line :all digits second line : all except the first digit . . . . Last line : the last digit
void main() { while(1){ if(printf("%d",printf("%d"))) break; else continue; } }
main() { unsigned char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
main() { main(); }
What is your nationality?
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); }
main() { char *p = “ayqm”; char c; c = ++*p++; printf(“%c”,c); }
How can i find first 5 natural Numbers without using any loop in c language????????
Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange
Derive expression for converting RGB color parameters to HSV values
main() { char s[ ]="man"; int i; for(i=0;s[ i ];i++) printf("\n%c%c%c%c",s[ i ],*(s+i),*(i+s),i[s]); }
main() { char str1[] = {‘s’,’o’,’m’,’e’}; char str2[] = {‘s’,’o’,’m’,’e’,’\0’}; while (strcmp(str1,str2)) printf(“Strings are not equal\n”); }