What is c system32 taskhostw exe?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


what is the difference between #include<stdio.h> and #include "stdio.h" ?

3 Answers  


SRUCTURE PROGRAMMING

3 Answers   CTS, Wipro,


void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?

7 Answers  


What is the difference between the local variable and global variable in c?

0 Answers  






How can I insert or delete a line (or record) in the middle of a file?

0 Answers  


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

0 Answers  


What will be your course of action for a push operation?

0 Answers  


How to print "I Love My India" without using semi colon?

4 Answers  


Who is the main contributor in designing the c language after dennis ritchie?

0 Answers  


Explain the ternary tree?

0 Answers  


what does exit() do?

3 Answers   Cadence,


Categories