Are comments included during the compilation stage and placed in the EXE file as well?
No Answer is Posted For this Question
Be the First to Post Answer
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
How to print %d in output
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
what are the various memory handling mechanisms in C ?
how should functions be apportioned among source files?
What is the use of the restrict keyword?
What is a class?
What is pivot in c?
What is structure in c language?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
tell me the full form of c?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?