in iso what are the common technological language?
No Answer is Posted For this Question
Be the First to Post Answer
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
what does ‘Bus Error’ mean?
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
what are the compilation steps? ( i want inside the compiler )
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
Do string constants represent numerical values?
how to make a scientific calculater ?
What is variable initialization and why is it important?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
what is the output of below int n=10; (n++)++; printf("%d",n);
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }