IT 231: Foundation of Information Technology | Question Bank | BIM First Semester

  TRIBHUVAN UNIVERSITY FACULTY OF MANAGEMENT Office of the Dean BIM / First Semester / IT 231: Foundation of Information Technology May – June 2023 Full Marks: 60 Pass Marks: 30 Time: 3 Hrs Candidates are required to answer the questions in their own words as far as practicable. Group “A” [10 × 1 = […]

C Programming | Structure Programming | C++ | Notes | BIM, BSc.CSIT, BCA, BIT, BCIS

Following are the chapter-wise notes on C programming. Chapter 1: Introduction of a C programming For PDF: CLICK HERE Chapter 2: Elements of C A set of characters that are used to form words, numbers, and expressions in C is called a C character set. For PDF: CLICK HERE Chapter 3: Operators and Expression An operator is […]

C-Programming (Handwritten Notes)

This handwritten notes is provided by our active contributor Miss Aashma Pandey from Asian School of Management and Technology. Study Notes Nepal team is very thankful for her support toward us. This Notes is for reference purposes only.

C-Programming Solved Questions

Write a function that takes a string from the user, if the length of the string is 7 then it displays the middle character of that string, and the function returns, otherwise the user is asked to input another string. [BIM 2014]#include<stdio.h>#include<string.h>int main(){char a[30];char b;int i;start:printf(“enter a string of 7 character “);scanf(“%s”,a);if(strlen(a)!=7)goto start;elseprintf(“the mid char […]