Declare an array of N pointers to functions returning
pointers to functions returning pointers to characters?
write a program to Insert in a sorted list
print a semicolon using Cprogram without using a semicolon any where in the C code in ur program!!
35 Answers Tata Elxsi, TCS, VI eTrans,
what is variable length argument list?
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
Write a program to check whether the number is prime and also check if it there i n fibonacci series, then return true otherwise return false
PROG. TO PRODUCE 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is the output for the program given below typedef enum errorType{warning, error, exception,}error; main() { error g1; g1=1; printf("%d",g1); }
write a program in c to merge two array
x=2 y=3 z=2 x++ + y++; printf("%d%d" x,y);
Link list in reverse order.
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); }
main() { int i=-1; +i; printf("i = %d, +i = %d \n",i,+i); }