Do string constants represent numerical values?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is wrong with this program statement? void = 10;
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Which header file is essential for using strcmp function?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
How do you write a program which produces its own source code as its output?
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
What is character set?
How many levels deep can include files be nested?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
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
What is strcmp in c?