What are directives in c?
No Answer is Posted For this Question
Be the First to Post Answer
1. main() { printf("%d",printf("HelloSoft")); } Output?
How can I find leaf node with smallest level in a binary tree?
How can I allocate arrays or structures bigger than 64K?
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
Explain how do I determine whether a character is numeric, alphabetic, and so on?
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
How to add two numbers with using function?
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
2 Answers Drona Solutions, Infosys, Vodafone, Webyog,
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
What are extern variables in c?
What is uint8 in c?
Explain what is the difference between functions getch() and getche()?