int i=~0;
uint j=(uint)i;
j++;
printf(“%d”,j);
What are the features of the c language?
What is Memory leakage ?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What is the difference between c and python?
Can I pass constant values to functions which accept structure arguments?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
which types of data structure will i use to convert infix to post fix???
What are pointers in C? Give an example where to illustrate their significance.
What is clrscr ()?
What are qualifiers and modifiers c?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
Explain how can I read and write comma-delimited text?