What does d mean?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What's the difference between a linked list and an array?

14 Answers  


name the language for writing c compiler?

3 Answers   Microsoft,


What is union and structure?

0 Answers  


write a own function for strstr

1 Answers   LG Soft,


#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.

8 Answers   IBM,






The difference between printf and fprintf is ?

0 Answers   Baan Infotech,


write a c program to find the square of a 5 digit number and print the result.

5 Answers   Accenture, Sasken, Vimukti Technologies,


for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????

8 Answers  


what is the code to display color fonts in the output?

1 Answers  


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }

2 Answers  


What is the use of ?: Operator?

0 Answers  


Categories