Write a code to generate divisors of an integer?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of #pragma directives in C?
What are keywords in c with examples?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
write an algorithm to display a square matrix.
Explain how can I make sure that my program is the only one accessing a file?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What are the three constants used in c?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Explain what does it mean when a pointer is used in an if statement?