What is the c language function prototype?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different categories of functions in c?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
How do you use a pointer to a function?
write a program to generate 1st n fibonacci prime number
How do I use strcmp?
Place the #include statement must be written in the program?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is the difference between if else and switchstatement
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
write a program to copy a string without using a string?
Which command is more efficient? *(ptr+1) or ptr[1]