List some of the dynamic data structures in C?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
Write a program to print factorial of given number without using recursion?
What is the basic structure of c?
Program to simulate second clock
difference between ordinary variable and pointer in C?
Two's compliment of -5
What is #error and use of it?
what do you mean by defining a variable in our c code?
What is gets() function?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
without using arithmatic operator solve which number is greater??????????