What are pointers? Why are they used?
No Answer is Posted For this Question
Be the First to Post Answer
which one is highest Priority in c? a)=,b)+,c)++,d)==
Write a program to generate prime factors of a given integer?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Can we add pointers together?
main() { clrscr(); } clrscr();
Explain continue keyword in c
Write a program to print all permutations of a given string.
Difference between null pointer and dangling pointer?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Why #include is used in c language?
How was c created?
what is the difference between global variable & static variable declared out side all the function in the file.