Why c is known as a mother language?
No Answer is Posted For this Question
Be the First to Post Answer
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
What are global variables?
To what value do nonglobal variables default? 1) auto 2) register 3) static
When should I declare a function?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
How to add two numbers without using semicolon at runtime
What's the difference between a linked list and an array?
Why structure is used in c?
what is difference between #include<stdio.h> and #include"stdio.h"
Why static is used in c?