Which is the best website to learn c programming?
No Answer is Posted For this Question
Be the First to Post Answer
How can I insert or delete a line (or record) in the middle of a file?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
what is constant pointer?
How is null defined in c?
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
difference between c and c++?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
What is a lookup table in c?
WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
8 Answers Carphone Warehouse, IBM, SAS,
void main() { int i=5; printf("%d",i+++++i); }
what is unsigened char and what is the difference from char
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?