How to declare a variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is a newline escape sequence?
Give basis knowledge of web designing ...
What is data structure in c and its types?
a C prog to swap 2 no.s without using variables just an array?
What is the Lvalue and Rvalue?
What is function and its example?
Give a method to count the number of ones in a 32 bit number?
What does char * * argv mean in c?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
How many types of operators are there in c?