What is #pragma statements?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between static and global variables?
The difference between printf and fprintf is ?
Why pointers are used?
What is the difference between CV and Resume ?
C language questions for civil engineering
What is void c?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
How to delete a node from linked list w/o using collectons?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
What are the header files used in c language?
why division operator not work in case of float constant?