All technical questions
No Answer is Posted For this Question
Be the First to Post Answer
What are runtime error?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
main() { printf("hello%d",print("QUARK test?")); }
Can we declare variables anywhere in c?
Why do we use header files in c?
Explain how can you tell whether a program was compiled using c versus c++?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
What is the argument of a function in c?
Who is the founder of c language?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]