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 49683find 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(); }
2352Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
2244write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
5 6789In 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.
1904
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What are the types of operators in c?
Is there anything like an ifdef for typedefs?
Is null a keyword in c?
write a program to concatenation the string using switch case?
List the variables are used for writing doubly linked list program.
How can you read a directory in a C program?
What is scope rule in c?
What is the modulus operator?
What are the various types of control structures in programming?
What is the process of writing the null pointer?
What is multidimensional arrays
Why doesnt that code work?
Is return a keyword in c?
What is the use of static variable in c?