What is the value of uninitialized variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What language is c written?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Explain what is the benefit of using #define to declare a constant?
what is array?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
What is variable and explain rules to declare variable in c?
What are the different types of constants?
Where are c variables stored in memory?
What is difference between main and void main?