Total Pageviews

Saturday, 21 November 2015

JAVA Practices of Ganpat University [solved programs]

Hello all,                  This is batch of  2014 and We are uploading the solutions of Ganpat University Practicals.This will help you in Developing your JAVA skills . I will also add some important links so that you can download java and Setup on your Windows | Mac | Linux PC   ....JAVA Practicals   or  Link 2(Dropbox)Download JAVA-->NetBeans IDE FOR JAVAJava Works on cross...

Tuesday, 15 September 2015

C Programming Arrays and Functions [1.0.16]

In C programming, a single array element or an entire array can be passed to a function. Also, both one-dimensional and multi-dimensional array can be passed to function as argument. Passing One-dimensional Array In Function C program to pass a single element of an array to function #include <stdio.h> void display(int a) { printf("%d",a); } int main(){ int c[]={2,3,4}; display(c[2]); //Passing array element c[2] only. return 0; } Output 4 Single element of an array can be passed in similar manner as passing...