Why flag is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
how can I convert a string to a number?
all c language question
What are pragmas and what are they good for?
how to determine the complexity of an algorithm as log(n)
What is a C array and illustrate the how is it different from a list.
what is use of malloc and calloc?
Can we use visual studio for c?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Explain how can a program be made to print the line number where an error occurs?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.