What does the file stdio.h contain?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i; printf("%d",i^i); }
Give differences between - new and malloc() , delete and free() ?
char p="data"; printf(p);
who developed c and why he developed c?
Find the highest of three numbers and print them using ascending orders?
write a own function to compare two strings with out using stringcomparition function?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
why i join syntel?
23 Answers ABC, Syntel, TCS,
What is the difference between fork() and vfork()?
Is double link list a linear data structure? If Yes, Why?If No, Why?
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50