What is pointer to pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
What are the different types of C instructions?
Write a program that can show the multiplication table.
What is the use of #define preprocessor in c?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
How to draw the flowchart for structure programs?
What is mean by data types 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?
What do you mean by scope of a variable in c?
What are called c variables?
What are the 5 elements of structure?
What is storage class?