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
No Answer is Posted For this Question
Be the First to Post Answer
main() { extern int i; i=20; printf("%d",i); }
int swap(int *a,int *b) { *a=*a+*b;*b=*a-*b;*a=*a-*b; } main() { int x=10,y=20; swap(&x,&y); printf("x= %d y = %d\n",x,y); }
#include<stdio.h> main() { char s[]={'a','b','c','\n','c','\0'}; char *p,*str,*str1; p=&s[3]; str=p; str1=s; printf("%d",++*p + ++*str1-32); }
write a c-program to find gcd using recursive functions
Write a procedure to implement highlight as a blinking operation
find simple interest & compund interest
to remove the repeated cahracter from the given caracter array. i.e.., if the input is SSAD output should of SAD
Write a program to receive an integer and find it's octal equivalent. How can i do with using while loop.
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.
main() { int i=-1; +i; printf("i = %d, +i = %d \n",i,+i); }
what is variable length argument list?
int i=10; main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); }