how to compare two strings without using strcmp() function??
what is the definition of storage classes?
What are the different types of endless loops?
Why does not use getgh(); and <conio.h> in c language.
Is exit(status) truly equivalent to returning the same status from main?
Where can I get an ansi-compatible lint?
Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Is it fine to write void main () or main () in c?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
write a program to generate 1st n fibonacci prime number
what is the use of keyword volatile??
How can I trap or ignore keyboard interrupts like control-c?