c programs are converted into machine language with the help of
a) an interpreter
b) a compiler
c) an operatinf system
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
pascal triangle program
Explain the concept and use of type void.
What's the right way to use errno?
how to set Nth bit of variable by using MACRO
WHAT IS HIGH LEVEL LANGUAGE?
how to do in place reversal of a linked list(singly or doubly)?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is this pointer in c plus plus?
What is a buffer in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop