Introduction
I have used Code::blocks 12 compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
I have used Code::blocks 12 compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
#include <stdio.h>
#define MAX_SIZE 100 // Maximum size of the string
int main()
{
char text[MAX_SIZE];
char * str = text;
int count = 0;
// Inputtin string from user
printf("Enter any string: ");
gets(text);
// Iterating though last element of the string
while(*(str++) != '\0') count++;
printf("Length of %s is: %d", text, count);
return 0;
}
Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …
C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …