Assignment is a piece
of work done by students, it is like
home work as we have done home
work in small class but in higher class its known as assignment. Assignment
includes specific questions set which enhance student knowledge towards related
subject. Assignment play an important role for achieving good score in
examination, normally assignment is done at end of syllabus completion.
Sunday, 4 October 2015
Computer Assignment
![](http://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieQnBSliKz82rpTOE_CwtauoRRhbVXzQKffAPOYJrMBCWXt8R-uY8Wj5VCbOBe8OSDzP0rwTYMX096G3LZSd-NCs8tLFpBtawL_VjoBPOzBFDXvVQJnUL_9BjVAn0tSV8/s113/girfa-face.jpg)
Thursday, 17 September 2015
C language Notes
Hi Reader You can get C language PDF notes with example on
following topics So just select your topic and download
notes
Call By Value/Call by reference
Signed/Unsigned Variable
![](http://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieQnBSliKz82rpTOE_CwtauoRRhbVXzQKffAPOYJrMBCWXt8R-uY8Wj5VCbOBe8OSDzP0rwTYMX096G3LZSd-NCs8tLFpBtawL_VjoBPOzBFDXvVQJnUL_9BjVAn0tSV8/s113/girfa-face.jpg)
Saturday, 5 September 2015
Select cells, ranges, rows, or columns on a worksheet
On a worksheet, you can select cells, ranges, rows, or columns — for example, to format the data in the selection, or to insert other cells, rows, or columns. You can also select all or part of the cell contents and turn on Editing mode so that you can modify the data.
You can select cells and ranges in a Microsoft Excel table just as you would select them in a worksheet, but selecting table rows and columns is different from selecting worksheet rows and columns.
You can select cells and ranges in a Microsoft Excel table just as you would select them in a worksheet, but selecting table rows and columns is different from selecting worksheet rows and columns.
![](http://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieQnBSliKz82rpTOE_CwtauoRRhbVXzQKffAPOYJrMBCWXt8R-uY8Wj5VCbOBe8OSDzP0rwTYMX096G3LZSd-NCs8tLFpBtawL_VjoBPOzBFDXvVQJnUL_9BjVAn0tSV8/s113/girfa-face.jpg)
Thursday, 2 July 2015
C Language Problem Solution
Pass 2d Array to function
#include<stdio.h>
#include<conio.h>
void show(int *ar[][3],int a)
{
int r,c;
for(r=0;r<a;r++)
{
for(c=0;c<3;c++)
{
printf("Enter a number>> ");
scanf("%d",&ar[r][c]);
}
}
clrscr();
for(r=0;r<a;r++)
{
for(c=0;c<3;c++)
{
printf("\t%d",ar[r][c]);
}
printf("\n");
}
![](http://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieQnBSliKz82rpTOE_CwtauoRRhbVXzQKffAPOYJrMBCWXt8R-uY8Wj5VCbOBe8OSDzP0rwTYMX096G3LZSd-NCs8tLFpBtawL_VjoBPOzBFDXvVQJnUL_9BjVAn0tSV8/s113/girfa-face.jpg)
Subscribe to:
Posts (Atom)