Showing posts with label array program c language. Show all posts
Showing posts with label array program c language. Show all posts

Sunday 7 February 2021

Solved : PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , January 2020 | NIELIT O Level


Solved : PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , Jan 20

1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “OMR” answer sheet supplied with the question paper, following instructions therein.

1.1 : What is the following is invalid header file in C ?
         (A) math.h (B) mathio.h
         (C) string.h (D) ctype.h

Sunday 3 January 2021

2d Matrix sum using array | C Language | Nielit O Level Question

 Q : write a program to sum 3x3 matrix using an array.


2d matrix sum using array


Solution : 

#include<stdio.h>

#include<conio.h>

Wednesday 22 July 2020

String Concatenation without library function | C Language

Q : Write a program to concatenate two strings. (Do not use inbuilt string function).


Answer : 



#include<stdio.h>
#include<conio.h>
/*============================
     Girfa Student Help
     Concatenation string
==============================*/

Find Largest number from array using function program | C Language

Q : Write a program to input a set of numbers into an array. Pass the array to a function that finds and display the  largest number.?


Answer : 



#include<stdio.h>
#include<conio.h>
/*============================
     Girfa Student Help
     Find largest no. in array using function
==============================*/
void find(int ar[5]);