while initialization of array why we use a[][2]
why not a[2][]...?
How the c program is executed?
What is 2c dna?
What are the 5 types of inheritance in c ++?
wat are the two methods for swapping two numbers without using temp variable??
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What is getch?
find 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(); }
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What are unions in c?
What are the advantage of c language?
Do you know pointer in c?