What are the 5 types of organizational structures?
No Answer is Posted For this Question
Be the First to Post Answer
why 'c' is called middle level language.
Can you mix old-style and new-style function syntax?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
why we use pointer in c
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
what is diff b/w huge & far & near pointer??
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.