What are different storage class specifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
what 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
How to write a program for swapping two strings without using 3rd variable and without using string functions.
How does #define work?
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
When do we get logical errors?
which type of aspect you want from the student.
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
how to use enum datatype?Please explain me?
What is boolean in c?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }