What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
1 3698what 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 4879write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
TCS,
1 3330
Why main is not a keyword in c?
What is the mean of function?
How do you search data in a data file using random access method?
Explain how can I open a file so that other programs can update it at the same time?
How pointers are declared?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What are local static variables?
What is call by reference in functions?
What are the primitive data types in c?
What is C language ?
code for quick sort?
What is difference between union All statement and Union?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?