|
jschell wrote: It looks valid to me. Then by all means, feel free to answer it.
Veni, vidi, abiit domum
|
|
|
|
|
This is not valid question because two dimensional array means one Row and one column.If you want to print without second loop so you have to give column address.
Example:-
For(int i=0;i<3;i++)
{
arr[i][0]=10;
arr[i][1]=23;
arr[i][2]=33;
}
But this is wrong way for programming.
|
|
|
|
|
Why are you telling me this?
Veni, vidi, abiit domum
|
|
|
|
|
Hello. I want to have an if statement thats says if the variable is entered properly, do such and such. In C++ it is like so:
if(cin >> varaible)
{}
I need to know how to this in Objective C. Thanks everyone!
|
|
|
|
|
Member 10436549 wrote: In C++ it is like so:
if(cin >> varaible)
{}
That would be most unlikely to give you a valid result in C++, since the result will alway be non-null.
Veni, vidi, abiit domum
|
|
|
|
|
I want to find links of youtbue mp4 encoded using objective-c code. I have to find out but no solution. can someone help me. thanks all. below is the code I find it does not work, someone can edit, or share the code for me, via email. duongnguyen2802@gmail.com
link for code : https://gist.github.com/speedyapocalypse/2069100[^]
|
|
|
|
|
Hi,
am new in development.
|
|
|
|
|
Can anyone suggest me how can I start learning objective-C?
I am completely new to this programming language. Are there any books available for same?
What are the prerequisites to learn this language?
I mean any programming languages, IDE for development.
I know C,C++,Java and C#.
Thanks,
Tapan
|
|
|
|
|
|
|
|
After Apple documentation, BigNerdRanch and Lynda I must add what helped me to completely understand objective-c. Here is the link:
link[^]
|
|
|
|
|
Well First you will need a Mac with X-Code installed. It's free to download on the Mac App Store.
Then I suggest to follow some Tutorials on the Web to create simple Applications before you consult the Apple Documentation - where you can wuickly find solutions for specific problems.
In my opinion it's useless to buy books, as the Cocoa Framework is updated quite frequently and the books get outdated pretty soon.
What helps are Tutorials on the Web (do some Google research) and Apple WWDC Videos.
Regards, Simon
|
|
|
|
|
Thanks Simon for your inputs. I think I got the way from where I should start.
|
|
|
|
|
In what developers use the Objective-c language to code besides to the IOS applications??
Is this language use to develop on ios platform only??
|
|
|
|
|
Probably some sort of educational setting.
|
|
|
|
|
OS X applications as well.
|
|
|
|
|
Probably the IOS developer use XCode IDE to use objective c coding in iphone application programming, for every update there should be one version will be released form xcode by apple company,..
i hope its the answer for your question ...if you have any other queries feel free to contact me..
Thanks & Regards
Srinivas ladi
|
|
|
|
|
hi all,
i am beginner ... i am in a situation that i need to detect pen drive i.e., any pen drive is connected to computer or not through programmatically using c language. so if any one knows solution to this kindly help me .. pls give sample codes or any blogs ,discussion,links kindly share me.
thank u all
|
|
|
|
|
Please do not cross post. You have already asked this in QA and received an answer.
|
|
|
|
|
Here's an article of what you need to do (except this is in C#):
Enumerate and Auto-Detect USB Drives[^]
...but alas, I'm too lazy to look for a similar article that's in C, but the point of it is, it's essentially the same thing to do it in C, you have to enumerate the available devices through Windows (there's various API's that can accomplish this). I've pointed you in the right direction, ask again if you need additional info.
|
|
|
|
|
hello everyone,
I want to learn multitasking using c language, so that i can implement this method in my code for micro controller
Thanks in advance,
z3ngew
|
|
|
|
|
You'd probably be better off asking any questions on general purpose multi tasking in C in the C forum, as this one's specifically for C for the Apple stack.
|
|
|
|
|
z3ngew wrote: in my code for micro controller
going to really depend on the microcontroller or the distro you are using. if you are running an OS on your microcontroller that supports multithreading you will have to check that OS.
I am guessing that you are most likely using linux (if you are running an OS) which means you will want to read up posix threads.
either way you should probably ask this question on another forum as this one is for objective-c.
as if the facebook, twitter and message boards weren't enough - blogged
|
|
|
|
|
Multitasking was never part of standard C, heck, threads just barely made it into C++... so that means any solution is going to be platform specific (OS and/or hardware specific). With that said, define your platform...
|
|
|
|