BEGIN TRANSACTION; /* Create a table called NAMES */ CREATE TABLE Supliers (sId integer PRIMARY KEY, sName varchar , address varchar ); /* Create few…
Read morefunction type 3 : Return Without Arguments : example : write a function to sum two numbers : #include<stdio.h> int sum(); void main() { …
Read moreNo Return But Arguments in function . where arguments are pass in function syntax: void name(int a, char b , float c): example: #include<std…
Read morefunction in C language ( No Return No Arguments ) syntax: void name(); void refers to no return in c languages. || in no return no argument ther…
Read more#include<stdio.h> void main() { int i,j,n; printf("Enter no. of pattern you want : "); scanf("%d",&n); …
Read more#include<stdio.h> void main() { int i,j,n; printf("Enter no. of pattern you want : "); scanf("%d",&n); …
Read more#include<stdio.h> #define n 50 void main() { int a[n][n],i,j,row,col,b[n][n],c[n][n]; printf("Enter size of Row and Column:\n"…
Read more
Social Plugin