What is the best way to store flag values in a program?
No Answer is Posted For this Question
Be the First to Post Answer
hi send me sample aptitude papers of cts?
why we are using semicolon at the end of printh statment
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
how can we print hellow world programme without using semicolon
What is the difference between abs() and fabs() functions?
write a program to display all prime numbers
what is a NULL pointer?
Write a program to check whether a number is prime or not using c?
What does d mean?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain what’s a signal? Explain what do I use signals for?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }