Skip to main content

Posts

C Program to print the pattern

C Program to print the pattern X X Y X Y Z ........................................................................................ #include<stdio.h> #include<conio.h> void main () { int i , j ; for ( i= 88 ; i< 91 ;i ++) { for ( j = 88 ;j <= i ; j ++) { printf ( "%c" , j );                    }           printf ( "\n" ); } getch (); } ........................................................................................ OUTPUT
Recent posts

RESULT DDU Gorakhpur 2016

Deen Dayal Upadhyay Gorakhpur University   Check Your Result click Here  B. Sc. Part-II 26-MAY-2016   M.Sc.(Ag.) Genetics & Plant Breeding (Final) 26-MAY-2016   M.Sc. ( Agriculture ) (Agricultural Economics ) - I 26-MAY-2016   B.A. Part-II 26-MAY-2016   B.A. Part-I 24-MAY-2016   B.A. Part-III 16-MAY-2016   B.Com. Part-III 16-MAY-2016   B.Sc. Home Science-I 16-MAY-2016   B.Sc. Home Science-II 16-MAY-2016   B.Sc. Home Science-III 16-MAY-2016   M.A Economics-Final 16-MAY-2016   M.A Hindi-Prev 16-MAY-2016   M.A Hindi-Final 16-MAY-2016   M.A History-Prev 16-MAY-2016   M.A. Ancient History, Archaeology and Culture (Previous) 12-MAY-2016   M.A. Ancient History, Archaeology and Culture (Final) 12-MAY-2016   B.Com.- I Year 12-MAY-201...

Deen Dayal Upadhyaya Gorakhpur University B.Sc.Maths 2nd Yr time table

Computer Science B.Sc2nd Practical 2016

             Deen Dayal Upadhyaya Gorakhpur University                            Computer Science B.Sc2nd Practical 2016

Writing Data Into A File using C.

Writing Data Into A File We can write data into a file. The following is the algorithm for writing data: Create a file using fopen() function Write data into a file using fprintf() and fputs() functions Close a file using fclose() function For testing, we create data into a file, demo.txt. For implementation, create a file, called filewrite.c, and write this code. #include <stdio.h> int main( int argc , const char* argv[]) { int i; FILE *f; f = fopen("demo.txt", "w+");   for (i= 0 ;i< 5 ;i++){    fprintf(f, "fprintf message %d\n",i);    fputs("fputs message\n", f); // no format } fclose(f); printf("Data was written into a file\n"); return 0 ; } Save this code. Compile and run this program.  

C program to add two matrix

C program to add two matrix This c program add two matrices i.e. compute the sum of two matrices and then print it. Firstly user will be asked to enter the order of matrix (number of rows and columns) and then two matrices. For example if the user entered order as 2, 2 i.e. two rows and two columns and matrices as First Matrix :- 1 2 3 4 Second matrix :- 4 5 6 7 then output of the program (sum of First and Second matrix) will be 5  7 9 11 #include <stdio.h>   int main ( ) { int m , n , c , d , first [ 10 ] [ 10 ] , second [ 10 ] [ 10 ] , sum [ 10 ] [ 10 ] ;   printf ( "Enter the number of rows and columns of matrix \n " ) ; scanf ( "%d%d" , & m , & n ) ; printf ( "Enter the elements of first matrix \n " ) ;   for ( c = 0 ; c < m ; c ++ ) for ( d = 0 ; d < n ; d ++ ) scanf ( "%d" , & first [ c ] [ d ] ) ;   printf (...

Deen Dayal Upadhyay Gorakhpur University RESULTS

DDU Gorakhpur results chahiye to yaha click kare                                                                       RESULTS