What is the meaning of int *x[]();?
Answer / guest
x is a pointer to an array of function which takes no
arguments and returns int
| Is This Answer Correct ? | 1 Yes | 1 No |
Can you write a programmer for FACTORIAL using recursion?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
How pointer is different from array?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
What is malloc() function?
What is file in c preprocessor?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
what is the code to display color fonts in the output?
find largest of 3 no
If fflush wont work, what can I use to flush input?