void swap(int, int);int main(){int x, y;printf("Enter the value of x and y\n");scanf("%d%d",&x,&y);printf("Before Swapping\nx = %d\ny = %d\n", x, y);swap(x, y);printf("After Swapping\nx = %d\ny = %d\n", y, x);return 0;}void swap(int a, int b){int temp;temp = b;b = a;a = temp;printf("Values of a and b is %d %d\n",a,b);}
int main(){int i,j;for(i = 0,j=0;i<5;i++){printf("%d%d--",i,j);}return 0;}
#include<stdio.h>Take:int max(int a,int b,int c);void main(){int a,b,c,Max;printf("Enter 3 numbers:");scanf("%d %d %d",&a,&b,&c);printf("The 3 numbers are %d %d %d\n",a,b,c);Max=max(a,b,c);printf("The number is %d",Max);}int max(int a,int b,int c){int max=a;(max<b) && (max=b);(max<c) && (max=c);return max;}