What is the g value paradox?
No Answer is Posted For this Question
Be the First to Post Answer
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What is the output of printf("%d", printf("Hello"));?
What is variable declaration and definition in c?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
How does #define work?
Write a program to know whether the input number is an armstrong number.
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
write a c program for greatest of three numbers without using if statment
List some of the dynamic data structures in C?
main() { clrscr(); } clrscr();
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
How do you determine whether to use a stream function or a low-level function?