Is that possible to store 32768 in an int data type variable?
No Answer is Posted For this Question
Be the First to Post Answer
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
How can I make sure that my program is the only one accessing a file?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
Why is c called a structured programming language?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Is linux written in c?
Write a program that can show the multiplication table.
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
How to write c functions that modify head pointer of a linked list?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
What are the string functions? List some string functions available in c.