What are operators in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is that possible to store 32768 in an int data type variable?
what is purpose of fflush(stdin) function
12. 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
writw a program to insert an element in the begning of a doubly linked list
what is the role you expect in software industry?
tell me the full form of c?
What does c mean in basketball?
How to draw the flowchart for structure programs?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is the scope of local variable in c?