How can variables be characterized?
No Answer is Posted For this Question
Be the First to Post Answer
How can a process change an environment variable in its caller?
Write a C program in Fibonacci series.
Why we not create function inside function.
How to print India by nested loop? I IN IND INDI INDIA
how can u print a message without using any library function in c
write a program to concatenation the string using switch case?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
What are data types in c language?
whats the use of header file in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant