what is the differnce between programing langauge and tool?
is sas is a programing langauge r tool?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Explain the difference between null pointer and void pointer.
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is the purpose of main() function?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
Is it possible to create recycle bin in mobiles?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
What does typeof return in c?
How would you find a cycle in a linked list?
Is calloc better than malloc?