R
Q. What is the output of the following C program?
#include <stdio.h> int main() { int main = 9; printf("%d", main); return 0; }
In a C program, you may encounter the same name of a function and the same name of a variable. The program will display: $gcc prog3.c $ a.out 9
You must be Logged in to update hint/solution
Q. Range of signed char and unsigned char are.?
Q. Which of the following comments about wide characters is/are true ?
Q. Choose a correct statement about static variable.
Q. Which data structure is used to handle recursion in C?
Q. Which of the following search algorithm requires a sorted array?
Q. What is the extension of a C language source file?
Discusssion
Login to discuss.