Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
8 49445find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
2314Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
2201write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
5 6641In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
1855
What are variables and it what way is it different from constants?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
How many header files are in c?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Do pointers need to be initialized?
When was c language developed?
Where are local variables stored in c?
What is a shell structure examples?
Under what circumstances does a name clash occur?
What is hungarian notation? Is it worthwhile?
What is the basic structure of c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is "Duff's Device"?
What are valid signatures for the Main function?
Is fortran still used in 2018?