- Understanding pointers in c
- Definition
- How to read complex pointers
- Arithmetic operation with pointers
- Pointer to function
- Pointer to array of function
- Pointer to array of string
- Pointer to structure
- pointer to union
- Multi level pointer
- Pointer to array of pointer to string
- Pointer to three dimentional array
- Pointer to two dimensional array
- Sorting of array using pointer
- Pointer to array of array
- Pointer to array of union
- Pointer to array of structure
- Pointer to array of character
- Pointer to array of integer
- Complex pointers
- Generic pointer
- Null pointers
- Wild pointers
- Dangling pointer
- Near pointer
- Far pointer
- Graphics video memory
- Text video memory
- Huge pointer
- Memory model in C
C language interview questions solution for freshers beginners placement tricky good pointers answers explanation operators data types arrays structures functions recursion preprocessors looping file handling strings switch case if else printf advance linux objective mcq faq online written test prime numbers Armstrong Fibonacci series factorial palindrome code programs examples on c++ tutorials and pdf
Pointers tutorial in c
Subscribe to:
Post Comments (Atom)
1 comment:
1- Using pointers write a program that allow user to enter 5 integers in array, the program write the even numbers in the array1 and odd number in the array2.
2- Using the pointer write program to that allow user enter (no, name, age) to strut and print them.
3- Write program to insert values and print the number with its digits reversed. For example, given the number 7631, the program prints 1367 by using pointer.
4- Define struct students that contain the fields (std_no, std_name, std_mark) and declare pointer and allow user to enter 2 student data and then find and print the greater mark between two students by using pointer.
5- using the pointer write program to calculate
6- Using pointers write a program that print the average in an array of the first and last element (n) in an array , the second and (n-1) element , and so forth
2 7 1 3 4 5 6 8
Post a Comment