Why string is used in c?
what is the different between data structure and data type?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
how to copy a string without using c function
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Is flag a keyword in c?
How will you write a code for accessing the length of an array without assigning it to another variable?
What is include directive in c?
What does typedef struct mean?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
What is c language used for?
write a program to sort the elements in a given array in c language
the operator for exponencation is a.** b.^ c.% d.not available