What are the characteristics of arrays in c?
No Answer is Posted For this Question
Be the First to Post Answer
simple program of graphics and their output display
What are the advantages of using macro in c language?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
What is the most efficient way to count the number of bits which are set in a value?
what is compiler
When would you use a pointer to a function?
1 1 12 21 123 321 12344231 how i creat it with for loop??
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
what is the structure?
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Write a C program to fill a rectangle using window scrolling