c language supports bitwise operations, why
a) 'c' language is system oriented
b) 'c' language is problem oriented
c) 'c' language is middle level language
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
wat are the two methods for swapping two numbers without using temp variable??
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
how to execute a program using if else condition and the output should enter number and the number is odd only...
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
what is the function of pragma directive in c?
What are inbuilt functions in c?
What does %d do in c?
What do you mean by invalid pointer arithmetic?
biggest of two no's with out using if condition statement
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));