Why doesnt long int work?
No Answer is Posted For this Question
Be the First to Post Answer
How can you restore a redirected standard stream?
Ow can I insert or delete a line (or record) in the middle of a file?
What is function prototype in c with example?
Explain how can I convert a string to a number?
What are the 5 types of inheritance in c ++?
Explain what is the heap?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
What is the difference between int main and void main in c?
Describe newline escape sequence with a sample program?
define string ?
What is %d called in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)