Posts

Showing posts from 2021

Baglung beni to mustang jomson to muktinath road condition

Image
Baglung beni to mustang Jomson to muktinath road condition.  

Structure | Let us C solution with details description and tutorials | yashwant kanetkar

  Chapter: Structure | Let us C solution with details description and tutorials |  yashwant kanetkar S.N Chapter S.N Chapter 1 Decision Control Structure 5 Arrays 2 The Loop Control Structure 6 Puppetting On Strings  3 The Case Control Structure 7 Structures 4 Function and Pointer 8 Input/Output in C   [D] Attempt the following: (a) Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the collage. (a) Write a function to print names of all students who joined in a particular year. (b) Write a function to print the data of a student whose roll number is given. Show Solutions     Hide Solutions /* d (a) Create a structure to specify data on students given below: Roll number, Name,  Depar

Puppetting on string | Let us C solution with details description and tutorials | yashwant kanetkar

Image
  Chapter: Puppetting on string | Let us C solution with details description and tutorials |  yashwant kanetkar S.N Chapter S.N Chapter 1 Decision Control Structure 5 Arrays 2 The Loop Control Structure 6 Puppetting On Strings  3 The Case Control Structure 7 Structures 4 Function and Pointer 8 Input/Output in C [D] Attempt the following: (a) Which is more appropriate for reading in a multi-word string? gets( ) printf( ) scanf( ) puts( ) Show Solutions     Hide Solutions Chapter:  Puppetting On Strings /*  [D] Attempt the following: (a) Which is more appropriate for reading in a multi-word string? gets( ) printf( ) scanf( ) puts( )  */ #include <stdio.h>  //header file #include <conio.h>  //header file int main()  //main function {      // Answer: Option A gets()   char string[40];    printf("Enter a string:");    gets(string);    printf("The string input was: %s\n", string); getch(); return 0;  // ret

Array | Let us C solution with details description and tutorials | yashwant kanetkar

Image
  Chapter: Array | Let us C solution with details description and tutorials |  yashwant kanetkar S.N Chapter S.N Chapter 1 Decision Control Structure 5 Arrays 2 The Loop Control Structure 6 Puppetting On Strings  3 The Case Control Structure 7 Structures 4 Function and Pointer 8 Input/Output in C [D] Answer the following: (a) Twenty-five numbers are entered from the keyboard into an array. The number to be searched is entered through the keyboard by the user. Write a program to find if the number to be searched is present in the array and if it is present, display the number of times it appears in the array. Show Solutions     Hide Solutions Chapter: Array /* [D] Answer the following: (a) Twenty-five numbers are entered from the keyboard into an array. The number to be searched is entered through the keyboard by the user. Write a program to find if the number to be searched is present in the array and if it is present, display the number of