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
main() { show(); } void show() { printf("I'm the greatest"); }
#include<stdio.h> int main() { int a=3,post,pre; post= a++ * a++ * a++; a=3; pre= ++a * ++a * ++a; printf("post=%d pre=%d",post,pre); return 0; }
main() { char not; not=!2; printf("%d",not); }
struct point { int x; int y; }; struct point origin,*pp; main() { pp=&origin; printf("origin is(%d%d)\n",(*pp).x,(*pp).y); printf("origin is (%d%d)\n",pp->x,pp->y); }
There were 10 records stored in “somefile.dat” but the following program printed 11 names. What went wrong? void main() { struct student { char name[30], rollno[6]; }stud; FILE *fp = fopen(“somefile.dat”,”r”); while(!feof(fp)) { fread(&stud, sizeof(stud), 1 , fp); puts(stud.name); } }
char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }
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); }
Write a routine that prints out a 2-D array in spiral order
print numbers till we want without using loops or condition statements like specifically(for,do while, while swiches, if etc)!
what is brs test reply me email me kashifabbas514@gmail.com
main() { char p[ ]="%d\n"; p[1] = 'c'; printf(p,65); }
Derive expression for converting RGB color parameters to HSV values