Explain what is wrong with this statement? Myname = ?robin?;
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
Explain #pragma in C.
application attempts to perform an operation?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
implement NAND gate logic in C code without using any bitwise operatior.
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
#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); }
How do I determine whether a character is numeric, alphabetic, and so on?
difference between memcpy and strcpy
Write a program to swap two numbers without using a temporary variable?