How does pointer work in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

0 Answers   Wilco,


write the program for maximum of the following numbers? 122,198,290,71,143,325,98

5 Answers  


write a program to remove duplicate from an ordered char array? in c

2 Answers  


compare array with pointer?

1 Answers  


if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE

1 Answers  






write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?

4 Answers  


int i=10; printf("%d %d %d", i, i=20, i);

0 Answers  


What is const and volatile in c?

0 Answers  


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

0 Answers   TCS,


What is console in c language?

0 Answers  


Is stack a keyword in c?

0 Answers  


What is main return c?

0 Answers  


Categories