Can we initialize extern variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is C language Terminator?
explain memory layout of a C program
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
what is the code to display color fonts in the output?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
Why ordinary variable store only one value
Can you add pointers together? Why would you?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
What is the best way of making my program efficient?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?