What is pointers in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
How can I ensure that integer arithmetic doesnt overflow?
what is the difference between strcpy() and memcpy() function?
Is null always defined as 0(zero)?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What are pointers in C? Give an example where to illustrate their significance.
What is the time and space complexities of merge sort and when is it preferred over quick sort?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
Once I have used freopen, how can I get the original stdout (or stdin) back?
What are the differences between Structures and Arrays?
Is null always equal to 0(zero)?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant