What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
1 4470what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
2 5728write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
TCS,
1 4047
what does static variable mean?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Explain how do you determine the length of a string value that was stored in a variable?
Explain About fork()?
What is a program flowchart?
What is malloc and calloc?
Explain the ternary tree?
Which header file is used for clrscr?
What is a char c?
Is null always defined as 0(zero)?
What is the full form of getch?
What is the difference between union and anonymous union?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Differentiate between Macro and ordinary definition.
What is a void * in c?