Ads block

19. write a C program to illustrate the use of nested structure
Program to illustrate the use of nested structure Source Code: #include<stdio.h> struct student { char name[30]; struct dob { int date,year,month; }; }; …
Read more »
18. write C program to store the information about three students
Program to store the information about three students. Source Code: #include <stdio.h> struct student { char Name[50]; int roll; float marks…
Read more »
17. write a C program to perform specified operation on complex numbers
Program to perform specified operation on complex numbers Source Code: #include<stdio.h> typedef struct complex { double a; double b; } complex; complex …
Read more »
16. write a C program to display details of student
Program to display details of student like Roll Number, Name and subject Marks Source Code: #include <stdio.h> #include <string.h> struct student {…
Read more »
15. write a C program to count the lines,words and characters in a given text
Program to count the lines,words and characters in a given text. Source Code: #include<stdio.h> int main() { char str[200]; int line, word, ch; line = w…
Read more »
14. write a C program that displays the position of a character in the string if character match
Program that displays the position of a character in the string if character match Source Code: #include<stdio.h> void main() { char x[30]; char c; int i…
Read more »
13. write a C program to insert & delete sub string into/from main string from a given position.
Program to insert & delete sub string into/from main string from a given position. 13a). Insert a sub string into main string from a given position. Sourc…
Read more »
12. write a C program to determine if the given string is palindrome or not
Program to determine if the given string is palindrome or not 12a) Without buit-in-Functions Source Code: #include<stdio.h> int main() { char string…
Read more »
11. write a C program that uses functions to perform addition and multiplication of two matrices
Program that uses functions to perform following : a) Addition of two matrices Source Code: #include<stdio.h> int main() { int A[5][5],B[5][5],C[5][5],r…
Read more »
10. write a C program to find max., min. and avg. in an array of integers.
Program to find max., min. and avg. in an array of integers. Source Code: #include<stdio.h> int main() { int a[100],max,min,i,n,sum; float avg; printf(&q…
Read more »
Followers
SEARCH
LATEST
3-latest-65px
SECTIONS
- All Question Papers (1)
- blog (6)
- C Programs (32)
- CE (13)
- Courses (5)
- CSD (16)
- CSE (16)
- cse(ai&ml) (16)
- CSE(CS) (7)
- Downloads (3)
- ECE (14)
- EEE (13)
- Handwrittenotes (7)
- IT (16)
- Lab Programs (2)
- ME (12)
- mind maps (1)
- ML Projects (1)
- NPTEL-Assignments (3)
- Open Source (2)
- PPS MCQ (2)
- Question Papers (1)
- Tech Bytes (2)
- Technical Seminar (6)
- Technical Seminar1 (1)
- Testimonials (4)
- Videos (6)
ABOUT
- Srinivas Dandu
- Hi! This is Srinivas, the best place to get Study Materials and Technology updates.
Powered by Blogger.
Blog Archive
- March 2026 (1)
- September 2024 (1)
- December 2023 (3)
- November 2023 (1)
- October 2023 (1)
- October 2022 (5)
- July 2022 (1)
- May 2022 (1)
- April 2022 (3)
- March 2022 (40)
- February 2022 (2)
- January 2022 (26)
- December 2021 (4)