which is conditional construct
a) if statement
b) switch statement
c) while/for
d) goto
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between ‘g’ and “g” in C?
What is Conio.h ?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Explain that why C is procedural?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
question-how to run a c programme.
what is a NULL pointer?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
what is ram?
How would you sort a linked list?
Write a simple program to find the size of different basic data types in C.
Can anyone tell what is stack overflow? what precaution we should take?