What is a lvalue
No Answer is Posted For this Question
Be the First to Post Answer
#define d 10+10 main() { printf("%d",d*d); }
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Calculate 1*2*3*____*n using recursive function??
When should we use pointers in a c program?
Is double link list a linear data structure? If Yes, Why?If No, Why?
What are reserved words?
what is a function pointer and how all to declare ,define and implement it ???
What is the difference between if else and switchstatement
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
What is void pointers in c?
How can I find out the size of a file, prior to reading it in?
Write a program to check prime number in c programming?