What is far pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a macro?
What is const and volatile in c?
What is the difference between the expression “++a” and “a++”?
Where are c variables stored in memory?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(“%d”,*(*(x+1)+3));
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
simple program of graphics and their output display
Can you please explain the scope of static variables?
Can a variable be both static and volatile in c?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
What are valid signatures for the Main function?