How a string is stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are local static variables?
Explain the use of #pragma exit?
what are the files which are automatically opened when a c file is executed?
what is the use of keyword volatile??
How main function is called in c?
how to print this sereis 2 4 3 6 5..........?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Describe how arrays can be passed to a user defined function
What is bubble sort in c?
What are type modifiers in c?
write a program to gat the digt sum of a number (et. 15= >1+5=6)