Write a C/C++ program that connects to a MySQL server and
displays the global TIMEZONE.
No Answer is Posted For this Question
Be the First to Post Answer
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
I have seen function declarations that look like this
#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 string in c language?
What is the difference between #include <header file> and #include “header file”?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Is c programming hard?
What are the different types of C instructions?
What is the real time usage volatile?
Explain how do you determine the length of a string value that was stored in a variable?
Why we use stdio h in c?
what is array?