R
Q. What is the output of C Program with String Arrays?
int main() { char p[] = "GODZILLA"; int i=0; while(p[i] != '\0') { printf("%c",*(p+i)); i++; } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. When 1 is entered, the output of the code below is?
Q. What is the return type of malloc() or calloc()?
Q. What is the size of float in a 32-bit compiler?
Q. The purpose of the function ctime() is that ___________
Q. What is the output of C program?
Q. What is the range of a signed char variable in C?
Discusssion
Login to discuss.