How arrays can be passed to a user defined function


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


HOW TO HANDLE EXCEPTIONS IN C

8 Answers  


What is the use of getchar() function?

0 Answers  


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  


sir, i cannot find the way how to write aprogram by using array on queue

1 Answers   IISIT,






Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.

0 Answers   IBM,


In C programming, what command or code can be used to determine if a number of odd or even?

0 Answers  


what is the structure pointer?

0 Answers   Accenture, HCL,


There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.

2 Answers  


What is return in c programming?

0 Answers  


Define function ?Explain about arguments?

2 Answers   Geometric Software, Infosys,


What is the difference between array and pointer?

0 Answers  


Categories