Mention four important string handling functions in c languages .
No Answer is Posted For this Question
Be the First to Post Answer
What is the explanation for cyclic nature of data types in c?
How Many Header Files in c?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What is string length in c?
char ch=10;printf("%d",ch);what is the output
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
Write code for finding depth of tree
What are comments and how do you insert it in a C program?
to get a line of text and count the number of vowels in it
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
Write a program to generate prime factors of a given integer?