Explain what are the different data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how are 16- and 32-bit numbers stored?
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
which do you prefer C or Pascal?
which is faster execution: loops or recursion?
What is clrscr ()?
Explain what header files do I need in order to define the standard library functions I use?
print a "hello" word without using printf n puts in c language
Explain heap and queue.
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
How to write c functions that modify head pointer of a linked list?