What is bss in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of void in c?
How do I get a null pointer in my programs?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Tell me what is the purpose of 'register' keyword in c language?
Explain the use of bit fieild.
What does %c do in c?
How does sizeof know array size?
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
write a c program to check weather a particluar bit is set or not?
What is the difference between functions getch() and getche()?