int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answer Posted / neethu
%d%d%d
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
What are the types of pointers in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
How many levels of pointers can you have?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What are the types of data files?
Explain how do you print only part of a string?
Explain the Difference between the New and Malloc keyword.
What is the use of extern in c?
Explain the advantages and disadvantages of macros.
Explain what is the difference between a free-standing and a hosted environment?
What does p mean in physics?
Can we declare variables anywhere in c?
What is #define in c?
How do c compilers work?
Explain how can you restore a redirected standard stream?