Write a routine to implement the polymarker function
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to model an exploding firecracker in the xy plane using a particle system
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it.
What is the main difference between STRUCTURE and UNION?
main() { int i =10, j = 20; clrscr(); printf("%d, %d, ", j-- , --i); printf("%d, %d ", j++ , ++i); } a. 20, 10, 20, 10 b. 20, 9, 20, 10 c. 20, 9, 19, 10 d. 19, 9, 20, 10
why nlogn is the lower limit of any sort algorithm?
Printf can be implemented by using __________ list.
union u { struct st { int i : 4; int j : 4; int k : 4; int l; }st; int i; }u; main() { u.i = 100; printf("%d, %d, %d",u.i, u.st.i, u.st.l); } a. 4, 4, 0 b. 0, 0, 0 c. 100, 4, 0 d. 40, 4, 0
#include<stdio.h> main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
Display the time of the system and display the right time of the other country
main() { char *p; printf("%d %d ",sizeof(*p),sizeof(p)); }
main() { unsigned char i=0; for(;i>=0;i++) ; printf("%d\n",i); }