What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
No Answer is Posted For this Question
Be the First to Post Answer
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
What is boolean in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What are the types of functions in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
. Explain the differences between fork() and exec() in C
program to convert a integer to string in c language'
What is wrong in this statement? scanf(“%d”,whatnumber);
What is the size of structure in c?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.