What is your nationality?
create a C-code that will display the total fare of a passenger of a taxi if the driver press enter,the timer will stop. Every 10 counts is 2 pesos. Initial value is 25.00
main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
Cluster head selection in Wireless Sensor Network using C programming language.
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]); }
Write a procedure to implement highlight as a blinking operation
main() { unsigned int i=10; while(i-->=0) printf("%u ",i); }
How to use power function under linux environment.eg : for(i=1;i<=n;i++){ pow(-1,i-1)} since it alerts undefined reference to 'pow'.
what is the code of the output of print the 10 fibonacci number series
Under linux environment can u please provide a c code for computing sum of series 1-2+3-4+5......n terms and -1+2-3+4-5...n terms..
main(){ unsigned int i; for(i=1;i>-2;i--) printf("c aptitude"); }
void main() { static int i; while(i<=10) (i>2)?i++:i--; printf(ā%dā, i); }
main() { extern int i; i=20; printf("%d",sizeof(i)); }