Tell me about low level programming languages.
No Answer is Posted For this Question
Be the First to Post Answer
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
How to add two numbers without using semicolon n c????
how to find that no is int or float?
what is ANSI and ISO
how could explain about job profile
What is volatile in c language?
What is the difference between far and near in c?
What is the use of getch ()?