What is the symbol indicated the c-preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
What is string concatenation in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain how can I convert a number to a string?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Explain the use of 'auto' keyword in c programming?
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
main() { printf(5+"Vidyarthi Computers"); }
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
who did come first hen or agg
What is the right type to use for boolean values in c? Is there a standard type?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?