Apr

04

//———————————————— arp2.c ———————————–

// find the sum of array elements using pointer

#include<stdio.h>
void main(){
int a[5];
int *ptr;
int i,sum=0;
printf(“Enter Five Numbers:\n”);
for(i=0;i<5;i++){
scanf( “%d”,&a[i]);
}
ptr=a;
for(i=0;i<5;i++){
sum=sum+*(ptr+i);
}
printf(“Addition is: %d\n”,sum);
}

Apr

04

//——————————– arp1.c ———————————————

#include<stdio.h>
void main(){
int a[5];
int *ptr;
int i;
printf(“Enter Five Numbers:\n”);
for(i=0;i<5;i++){
scanf( “%d”,&a[i]);
}
ptr=a;
printf(“\n Value of ptr is: %d\n”,ptr);
printf(“Entered Five Numbers is:\n”);
/*for(i=0;i<5;i++){
printf(“%d\n”,*ptr+i);
}*/
for(i=0;i<5;i++){
printf(“%d\n”,*(ptr+i));
}
printf(“\n Value of ptr is: %d”,ptr);
printf(“\n——————————–\n”);
for(i=0;i<5;i++){
printf(“%d\n”,*ptr++);
}
printf(“\n Value of ptr is: %d”,ptr);
}

Mar

29

#include<conio.h>
#include<stdio.h>
void add(int x){
x=x+2;
printf(“\n%d”,x);
}
void addref(int *x){
*x=*x+2;
printf(“\n%d”,*x);
}
void main(){
int a;
scanf(“%d”,&a);
printf(“\nValue of a before function call %d”,a);
add(a);
printf(“\nValue of a after function call %d”,a);
printf(“\nValue of a before function call %d”,a);
addref(&a);
printf(“\nValue of a after function call %d”,a);
}

 

Jan

28

#include<stdio.h>

#include<conio.h>

void main(){

int num[50],n,i,key;

printf(“Values want to enter: “);

scanf(“%d”,&n);

for(i=0;i<n;i++){

scanf(“%d”,&num[i]);

}

printf(“\nEnter value want to search: “);

scanf(“%d”,&key);

for(i=0;i<n;i++){

if(num[i]==key){

printf(“\nValue %d is at position %d”,key,++i);

break;

}

}

}

//——————————————————————————————————–

#include<stdio.h>

#include<conio.h>

void main(){

int num[50],n,i,key;

printf(“Values want to enter: “);

scanf(“%d”,&n);

for(i=0;i<n;i++){

scanf(“%d”,&num[i]);

}

printf(“\nEnter value want to search: “);

scanf(“%d”,&key);

for(i=0;i<n;i++){

if(num[i]==key){

printf(“\nValue %d is at position %d”,key,i+1);

}

 

}

}

//——————————————————————————————————–

#include<stdio.h>

#include<conio.h>

void main(){

int num[50],n,i,key,flg=0;

printf(“Values want to enter: “);

scanf(“%d”,&n);

for(i=0;i<n;i++){

scanf(“%d”,&num[i]);

}

printf(“\nEnter value want to search: “);

scanf(“%d”,&key);

for(i=0;i<n;i++){

 

if(num[i]==key){

printf(“\nValue %d is at position %d”,key,i+1);

flg=1;

}

}

if(flg==0)

printf(“\nThis number doesnot exist”);

}

//——————————————————————————————————-

#include<stdio.h>

#include<conio.h>

void main(){

int num[50],n,i,key,flg=0;

printf(“Values want to enter: “);

scanf(“%d”,&n);

for(i=0;i<n;i++){

scanf(“%d”,&num[i]);

}

printf(“\nEnter value want to search: “);

scanf(“%d”,&key);

for(i=0;i<n;i++){

 

if(num[i]==key){

printf(“\nValue %d is at position %d”,key,i+1);

flg=1;

}

}

if(flg==0)

printf(“\nThis number doesnot exist”);

}

//—————————————————————————————————-

#include<stdio.h>

#include<conio.h>

void main(){

int num[3][3],i,j;

printf(“Enter Values in 3 x 3 array: “);

for(i=0;i<3;i++){

for(j=0;j<3;j++){

scanf(“%d”,&num[i][j]);

}

}

printf(“\nValues in 3×3 array are:\n”);

for(i=0;i<3;i++){

for(j=0;j<3;j++){

printf(“%6d”,num[i][j]);

}

printf(“\n”);

}

//————–TRANSPOSE

printf(“\nMatrix transpose —\n”);

for(i=0;i<3;i++){

for(j=0;j<3;j++){

printf(“%6d”,num[j][i]);

}

printf(“\n”);

}

}

Jan

22

Click below link to download:

Multiple Choice Questions on C (SET-2) Find Output/ Errors

Jan

20

Click To Download and Answser Them

 

Aug

10

Campus Commune is a professional network rolled out by TCS for the academic community. It has been acknowledged and appreciated by the student community across India as an effective tool for collaboration. sharing, learning and exploration.

TCS Campus Commune has launched Code Vita (the biggest Coding Contest in India) on 22nd July,13. This contest shall be open to all the students( FY 14,15 and 16 and 17 batches) of your esteemed Institutions. Request you to kindly ask the students from FY 14,15,16 and 17 batch to subscribe to the portal. The process of launching Campus Commune has been attached below. Please share it with all the students at your Institute. The students registering on this portal from a TCS non accredited Institute are called Direct Candidates.

The contest will provide the candidates a competition platform on a national level to test their talents and they will witness a really enriching learning experience.

�The Registration and Team Formation process for Code Vita is open till 12th August,13.

The subscription to TCS Campus Commune is a prerequisite to register and participate in Code Vita. The subscription to Campus Commune is free of cost. Please see the attachment below which needs to be supplemented with the process of launching Campus Commune and sent across to the students.�

FOR MORE DETAILS CLICK THE FOLLOWING URLS:-

Codevita_Participation_Guidelines_For_Direct_Trainees

CodeVita_2013_Registration_and_Team_Formation

Mar

21

 #include <stdio.h>
 #include <string.h>
 
 void main() {
 char *name=(char*)malloc(sizeof(50));
scanf(“%s”,name);
 printf(“\nMy name is %s\r\n”,name) ;

 }

Jan

24

#include<stdio.h>

#include<conio.h>

void main(){

int i,k,n;

char name[50][30],temp[30];

clrscr();

printf(“Enter number of persons: “);

scanf(“%d”,&n);

printf(“\n”);

fflush(stdin);

for(i=0;i<n;i++){

printf(“Enter name of person %d: “,i+1);

gets(name[i]);

}

for(k=0;k<n-1;k++){

for(i=0;i<n-k-1;i++){

if(strcmp(name[i],name[i+1])>0){

strcpy(temp,name[i]);

strcpy(name[i],name[i+1]);

strcpy(name[i+1],temp);

}

}

}

printf(“\nSorted list…\n\n”);

for(i=0;i<n;i++)

puts(name[i]);

getch();

}

Jan

24

#include<stdio.h>

#include<conio.h>

#define MAX 3

void main(){

int m,n,i,j;

//int const num=10;

int arr1[MAX][MAX],arr2[MAX][MAX],arr3[MAX][MAX];

printf(“Enter size of matrics as m,n: “);

scanf(“%d%d”,&m,&n);

if (m>MAX || n>MAX){

printf(“\nMatrix sizes are more than”);

printf(“declared sizes\n”);

exit(1);

}

printf(“Enter%d elements of matrix A row-wise as \n”,m*n);

for(i=0;i<m;i++){

for(j=0;j<n;j++){

scanf(“%d”,&arr1[i][j]);

}

}

for(i=0;i<m;i++){

for(j=0;j<n;j++){

scanf(“%d”,&arr2[i][j]);

}

}

for(i=0;i<m;i++){

for(j=0;j<n;j++){

arr3[i][j]=arr1[i][j]+arr2[i][j];

}

}

for(i=0;i<m;i++){

for(j=0;j<n;j++){

printf(“%d “,arr3[i][j]);

//arr2[j][i]=arr1[i][j];

}

printf(“\n”);

}

getch();

}

Jan

24

#include<stdio.h>

#include<conio.h>

#define MAX 3

void main(){

int i,j,k;

int arr1[MAX][MAX],arr2[MAX][MAX],arr3[MAX][MAX];

printf(“Enter%d elements of matrix A row-wise\n”,MAX*MAX);

for(i=0;i<2;i++){

for(j=0;j<2;j++){

scanf(“%d”,&arr1[i][j]);

}

}

for(i=0;i<2;i++){

for(j=0;j<2;j++){

scanf(“%d”,&arr2[i][j]);

}

}

for(i=0;i<2;i++){

for(j=0;j<2;j++){

arr3[i][j]=0;

for(k=0;k<2;k++){

arr3[i][j]+=arr1[i][k] * arr2[k][j];

}

}

}

for(i=0;i<2;i++){

for(j=0;j<2;j++){

printf(“%d “,arr3[i][j]);

//arr2[j][i]=arr1[i][j];

}

printf(“\n”);

}

getch();

}

Jan

24

#include<stdio.h>

#include<conio.h>

#define MAX 3

void main(){

int i,j;

int arr1[MAX][MAX],arr2[MAX][MAX];

printf(“Enter%d elements of matrix A row-wise\n”,MAX*MAX);

for(i=0;i<3;i++){

for(j=0;j<3;j++){

scanf(“%d”,&arr1[i][j]);

}

}

for(i=0;i<3;i++){

for(j=0;j<3;j++){

arr2[j][i]=arr1[i][j];

}

}

for(i=0;i<3;i++){

for(j=0;j<3;j++){

printf(“%d “,arr2[i][j]);

//arr2[j][i]=arr1[i][j];

}

printf(“\n”);

}

getch();

}

Jan

23

#include<stdio.h>
#include<conio.h>
#define maxsize 5
int Q[maxsize];
void main(){
int front=-1,rear=-1;
int item,i;
char ch=’y’;
do{
printf("Enter Item into Q: ");
scanf("%d",&item);
if(rear>=maxsize-1){
printf("\n Queue oveflow");
}
else{
rear=rear+1;
Q[rear]=item;
}
if(front==-1){
front=0;
}
printf("Do u want to continue: ");
fflush(stdin);
scanf("%c",&ch);
}while(ch==’y’||ch==’Y’);
printf("Do u want to delete item from Q: ");
fflush(stdin);
scanf("%c",&ch);
while(ch==’y’){
if(front<0){
printf("Q is Empty ");
}
else{
item=Q[front];
printf("Deleteed item is: %d\n",item);
front=front+1;
}
if(front>rear){
front=rear=-1;
}
printf("Do u want to delete item from Q: ");
fflush(stdin);
scanf("%c",&ch);
}
/*printf("————–DISPLAY VALUES FROM Q——–");
for(i=front;i<=rear;i++){
printf("%d\n",Q[i]);

}*/
}