Write a program to model an exploding firecracker in the xy
plane using a particle system
No Answer is Posted For this Question
Be the First to Post Answer
plz send me all data structure related programs
{ int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Write a Program in 'C' To Insert a Unique Number Only. (Hint: Just Like a Primary Key Numbers In Database.) Please Some One Suggest Me a Better Solution for This question ??
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal.
6 Answers Fusion Systems GmbH,
void main() { while(1){ if(printf("%d",printf("%d"))) break; else continue; } }
Write a program that produces these three columns sequence nos. using loop statement Sequence nos. Squared Squared + 5 1 1 6 2 4 9 3 9 14 4 16 21 5 25 30
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
typedef struct error{int warning, error, exception;}error; main() { error g1; g1.error =1; printf("%d",g1.error); }
main() { int i=3; switch(i) { default:printf("zero"); case 1: printf("one"); break; case 2:printf("two"); break; case 3: printf("three"); break; } }
void main() { int c; c=printf("Hello world"); printf("\n%d",c); }
main() { char *p = "hello world"; p[0] = 'H'; printf("%s", p); } a. Runtime error. b. “Hello world” c. Compile error d. “hello world”
pls anyone can help me to write a code to print the values in words for any value.Example:1034 to print as "one thousand and thirty four only"