Technical skills
By: Freshersworld Created: 3:00 pm, 18th May 2010
By: Freshersworld Created: 3:00 pm, 18th May 2010
A wide knowledge of all fields concerned with Computer Science is added advantage . So basic C and C++ is must to crack any interview. Here we start with Basic C Qn of the day .

Job Results
Internships
Scholarships
Success Stories
Kiona Software:
USA
Australia
UK
New Zealand
Canada
Singapore





main() { const int i=4; float j; j=++i; printf("%d %f",i,++j); } what is the output for the above code snippet??
Error:Constant value cannot be modified.
Error:Constant value cannot be modified.
@samir correct answer....
answer this : main() { register i=5; char j[]="hello"; printf("%d %s",i,j); }
Being aware of the New technology in the market even helps....because these days they are expecting you to adapt to the new technology, Basics matters a lot.
i guess the ans is 5 hello.
ans ??
yes swarna... the correct output is 5 hello.
are these c language essential for mechanical atudents as well?
@subodh... yes every engineering student must atleast know basics of C and C++.
Qn of the day : what does static variable mean?
A variable which can not be changed dynamically..lol
OK! A static variable is a variable that has been allocated statically — whose lifetime extends across the entire run of the program