This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <math.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
typedef struct mobile | |
{ | |
long mobileno; | |
char name[20]; | |
float billamt; | |
}mobile; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include<stdlib.h> | |
typedef struct student | |
{ | |
int rollno; | |
char name[20]; | |
float perc; | |
}student; | |
void read(student st[],int n); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include<stdlib.h> | |
typedef struct employee | |
{ | |
int code; | |
char name[20]; | |
int salary; | |
}employee; | |
void read(employee *st,int n); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include<stdlib.h> | |
typedef struct employee | |
{ | |
int code; | |
char name[20]; | |
int salary; | |
}employee; | |
void read(employee st[],int n); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include<ctype.h> | |
#include<stdlib.h> | |
void reverse(char *a); | |
int palindrome(char *a); | |
void copy(char *b,char *a); | |
int compare(char *a,char *b); | |
void search(char *a,char *b); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<stdlib.h> | |
void length(char a[10]); | |
int palindrome(char a[10]); | |
int compare(char a[10],char b[10]); | |
void copy(char a[10],char b[10]); | |
void reverse(char a[10],char b[10]); | |
void substr(char a[] ,char b[]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<stdlib.h> | |
int** create(int m ,int n); | |
void create1(int a[][10],int m , int n); | |
void print(int **a,int m ,int n); | |
void print1(int a[][10], int m , int n); | |
void transpose(int **a,int m ,int n); | |
int** addmat(int **a,int m1,int n1 ,int **b,int m2,int n2); | |
void multmat(int a[][10],int m1,int n1 ,int b[][10],int m2,int n2,int c[][10]); | |
int saddle(int a[][10],int m,int n); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<stdlib.h> | |
int create(int a[10][10],int m,int n); | |
void add(int a[10][10],int b[10][10],int c[10][10],int m1,int n1); | |
void mul(int a[10][10],int b[10][10],int c[10][10],int m1,int n1); | |
void transpose(int a[10][10],int c[10][10],int m1,int n1); | |
int saddle(int a[][10],int m,int n); | |
int main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<stdlib.h> | |
#define M 40 | |
int Create(int s[]); | |
void Display(int s[],int x); | |
int Union(int s1[],int s2[],int s3[],int m,int n); | |
int Intersection(int s1[],int s2[],int s3[],int m,int n); | |
int Difference(int s1[],int s2[],int s3[],int m,int n); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
void main() | |
{ | |
int a[5]; | |
int i,marks,t,sub; | |
float agg=0; | |
printf("\nEnter the no. of subjects:"); | |
scanf("%d",&sub); |