Wednesday, April 1, 2015

C program to calculate length of a given string without using standard function.

Write a ‘C’ program to calculate length of a given string without using standard function.


#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char name[20];
int i,l=0;
clrscr();
printf("enter the string");
gets(name);
for(i=0;name[i]!='\0';i++)
{
l++;
}
printf("%d",l);
getch();
}

Practice questions asked in bank exam

 Here are practice questions for bank exams, covering various topics, along with answers: