what is foreign key in c language?
What are structure members?
Is swift based on c?
What is infinite loop?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
how to print "hai" in c?
In c programming language, how many parameters can be passed to a function ?
Can stdout be forced to print somewhere other than the screen?
What are the concepts introduced in OOPs?
What are the keywords in c?
sir, i cannot find the way how to write aprogram by using array on queue
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?