What is sizeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a simple program to find the size of different basic data types in C.
print a "hello" word without using printf n puts in c language
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
What are keywords in c with examples?
What’s a signal? Explain what do I use signals for?
what is the difference between postfix and prefix unary increment operators?
What are the Advantages of using macro
c program to add and delete an element from circular queue using array
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
what is the difference between global variable & static variable declared out side all the function in the file.