How can you pass an array to a function by value?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
What are pointers in C?
write a programme to convert temperature from farenheit to celcius?
What is the difference between printf and scanf )?
What is the auto keyword good for?
program to find a smallest number in an array
what is a non volatile key word in c language?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Explain enumerated types in c language?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
How does #define work?