Can i use “int” data type to store the value 32768? Why?
No Answer is Posted For this Question
Be the First to Post Answer
Here is a neat trick for checking whether two strings are equal
List a few unconditional control statement 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.
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Explain the difference between exit() and _exit() function?
Can we assign string to char pointer?
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
What is the explanation for cyclic nature of data types in c?
write a program in c language for the multiplication of two matrices using pointers?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
what is the difference between static variable and register variable?