What is New modifiers?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to find out number of on bits in a number?
i need all types of question paper releted to "c" and other language.
HOW TO HANDLE EXCEPTIONS IN C
Wt are the Buses in C Language
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What is the difference between Printf(..) and sprint(...) ?
What is Dynamic Initialization.
write a c program to add two integer numbers without using arithmetic operator +
What does %p mean c?
Why double pointer is used in c?
What is an operator?
What is the scope of global variable in c?