int i=~0;
uint j=(uint)i;
j++;
printf(“%d”,j);
What are loops c?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
How do you prevent buffer overflows in C?
What do you mean by command line argument?
Is swift based on c?
what is object oriental programing?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
What are the types of type qualifiers in c?
write a program to print the all 4digits numbers & whose squares must me even numbers?
What are the advantage of c language?
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;