char *p="name";
printf(p);
What are the 4 data types?
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
show how link list can be used to repersent the following polynomial i) 5x+2
What does dm mean sexually?
define function
Explain what standard functions are available to manipulate strings?
Why main is used in c?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
Write a program to check armstrong number in c?
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What's the difference between constant char *p and char * constant p?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }