Why pointers are used?
No Answer is Posted For this Question
Be the First to Post Answer
How can I get back to the interactive keyboard if stdin is redirected?
Can we increase size of array in c?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
What are the types of type specifiers?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
How to declare pointer variables?
What is the difference b/w Structure & Union?
What is the difference between call by value and call by reference in c?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321