Why pointers are used in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
Are the outer parentheses in return statements really optional?
How are pointers declared in c?
When should a far pointer be used?
how to multiply two number taking input as a string (considering sum and carry )
define c
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
How to add two numbers with using function?
What are the 5 organizational structures?
What is the default value of local and global variables in c?
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,
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }