What is the role of && operator in a program code?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
how to return 1000 variables from functio9n in c?plz give me code also
why Language C is plateform dependent
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Why c is faster than c++?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
how can i print "hello"
What is malloc calloc and realloc in c?
Write a C program to find the smallest of three integers, without using any of the comparision operators.
can we declare a function in side the structure?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }