Is fortran faster than c?
No Answer is Posted For this Question
Be the First to Post Answer
How to swap 3 numbers without using 4th variable?
How do you define a string?
Why cann't whole array can be passed to function as value.
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
write a progam to compare the string using switch case?
second highest number in a given set of numbers
Differentiate between full, complete & perfect binary trees.
What is the difference between GETS();AND SCANF();
Between macros and functions,which is better to use and why?
who developed c and why he developed c?
What is this infamous null pointer, anyway?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }