Why doesnt this code work?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of bitfields & where do we use them?
What are the features of the c language?
Why we use int main and void main?
What are the c keywords?
what is inline function?
Why doesnt that code work?
what does keyword ‘extern’ mean in a function declaration?
Dont ansi function prototypes render lint obsolete?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
If input is 123 then how to print 100 and 20 and 3 seperately?
The file stdio.h, what does it contain?