How can I do graphics in c?
write a program that finds the factorial of a number using recursion?
to find the closest pair
If you know then define #pragma?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
Write a function that will take in a phone number and output all possible alphabetical combinations
what is the diffrenet bettwen HTTP and internet protocol
What is structure and union in c?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
WHAT IS FLOAT?
Is it possible to execute code even after the program exits the main() function?
What is a file descriptor in c?
Why is c fast?