What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
1 4413what 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 5633write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
TCS,
1 3985
what are the different storage classes in c?
How do you do dynamic memory allocation in C applications?
Explain how can I remove the trailing spaces from a string?
How does pointer work in c?
What is the difference between if else and switchstatement
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is #include stdio h and #include conio h?
why return type of main is not necessary in linux
Explain how do you view the path?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is maximum size of array in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
Can you tell me how to check whether a linked list is circular?
What is a macro, and explain how do you use it?