main()
{
{
unsigned int bit=256;
printf("%d", bit);
}
{
unsigned int bit=512;
printf("%d", bit);
}
}
a. 256, 256
b. 512, 512
c. 256, 512
d. Compile error
Answer / guest
256, 512, becoz these r different blocks, so declaration
allowed
| Is This Answer Correct ? | 21 Yes | 0 No |
main() { char a[4]="HELL"; printf("%s",a); }
write a simple calculator c program to perform addition, subtraction, mul and div.
1 Answers United Healthcare, Virtusa,
What is full form of PEPSI
To reverse an entire text file into another text file.... get d file names in cmd line
program to find the roots of a quadratic equation
14 Answers College School Exams Tests, Engineering, HP, IIIT, Infosys, Rajiv Gandhi University of Knowledge Technologies RGUKT, SSC,
find A^B using Recursive function
main ( ) { static char *s[ ] = {“black”, “white”, “yellow”, “violet”}; char **ptr[ ] = {s+3, s+2, s+1, s}, ***p; p = ptr; **++p; printf(“%s”,*--*++p + 3); }
what is the code of the output of print the 10 fibonacci number series
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
Derive expression for converting RGB color parameters to HSV values
write a program in c to merge two array
String reverse with time complexity of n/2 with out using temporary variable.